From c9fa83051175141eddb39d8a84d0c3fc512dcb69 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 11 Mar 2023 05:47:24 -0500 Subject: [PATCH] 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); + } +}