From 6b5de6327ebfbc03cb3cb13d8a5b2d244a15a303 Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Tue, 22 Aug 2023 22:51:29 +0200 Subject: [PATCH 001/486] update readme --- README.md | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index d51f75a2..0ce1609c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ ## Install -### elementary os 6 and 6.1 +### elementary OS 7 Horus If you have never added a PPA on your system before, you might need to run this command first: @@ -41,9 +41,12 @@ sudo add-apt-repository ppa:stsdc/monitor sudo apt install com.github.stsdc.monitor ``` -Monitor will then be available from the Applications menu. +Monitor will be available from the Applications menu. -### Fedora (36) +### ~~Fedora (36)~~ + +> [!WARNING] +> Dropped support due to lack of Pantheon dependencies on COPR. ```bash sudo dnf copr enable stsdc/monitor @@ -54,23 +57,7 @@ sudo dnf install com.github.stsdc.monitor ### Install dependencies -* meson -* appstream -* debhelper (>= 9) -* libgtk-3-dev -* libglib2.0-dev -* valac (>= 0.26) -* libgranite-dev (>= 5.2.0) -* libwnck-3-dev -* libgtop2-dev -* libwingpanel-3.0-dev -* libhandy-1-dev -* libudisks2-dev -* libxnvctrl0 -* libxnvctrl-dev -* libcurl4-gnutls-dev -* libjson-glib-dev -* sassc +Check dependencies in [the deb control file](debian/control). ### Clone, Build & Install From 10bb4a89f2959bf7a88518ea4832e540c77df65a Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Wed, 28 Feb 2024 18:34:00 +0100 Subject: [PATCH 002/486] Fixes VRAM percentage #369 --- src/Resources/GPU/GPUAmd.vala | 13 ++++++++++--- src/Resources/GPU/GPUNvidia.vala | 8 ++++++-- src/Resources/GPU/IGPU.vala | 6 +++++- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/src/Resources/GPU/GPUAmd.vala b/src/Resources/GPU/GPUAmd.vala index c57667df..38ecc512 100644 --- a/src/Resources/GPU/GPUAmd.vala +++ b/src/Resources/GPU/GPUAmd.vala @@ -9,7 +9,9 @@ public class Monitor.GPUAmd : IGPU, Object { public int memory_percentage { get; protected set; } - public int memory_vram_used { get; protected set; } + public double memory_vram_used { get; protected set; } + + public double memory_vram_total { get; set; } public double temperature { get; protected set; } @@ -22,11 +24,15 @@ public class Monitor.GPUAmd : IGPU, Object { } private void update_memory_vram_used () { - memory_vram_used = int.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_used")); + memory_vram_used = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_used")); + } + + private void update_memory_vram_total () { + memory_vram_total = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_total"));; } private void update_memory_percentage () { - memory_percentage = int.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_busy_percent")); + memory_percentage = (int) (Math.round ((memory_vram_used / memory_vram_total) * 100)); } private void update_percentage () { @@ -36,6 +42,7 @@ public class Monitor.GPUAmd : IGPU, Object { public void update () { update_temperature (); update_memory_vram_used (); + update_memory_vram_total (); update_memory_percentage (); update_percentage (); } diff --git a/src/Resources/GPU/GPUNvidia.vala b/src/Resources/GPU/GPUNvidia.vala index 66afe19b..6c325634 100644 --- a/src/Resources/GPU/GPUNvidia.vala +++ b/src/Resources/GPU/GPUNvidia.vala @@ -9,7 +9,9 @@ public class Monitor.GPUNvidia : IGPU, Object { public int memory_percentage { get; protected set; } - public int memory_vram_used { get; protected set; } + public double memory_vram_used { get; protected set; } + + public double memory_vram_total { get; set; } public double temperature { get; protected set; } @@ -88,7 +90,9 @@ public class Monitor.GPUNvidia : IGPU, Object { private void update_temperature () { temperature = nvidia_temperature; } - private void update_memory_vram_used () { memory_vram_used = nvidia_memory_vram_used; } + private void update_memory_vram_used () { memory_vram_used = (double) nvidia_memory_vram_used; } + + private void update_memory_vram_total () { } private void update_memory_percentage () { memory_percentage = nvidia_memory_percentage; } diff --git a/src/Resources/GPU/IGPU.vala b/src/Resources/GPU/IGPU.vala index d15abce5..bccbfc67 100644 --- a/src/Resources/GPU/IGPU.vala +++ b/src/Resources/GPU/IGPU.vala @@ -15,7 +15,9 @@ public interface Monitor.IGPU : Object { public abstract int memory_percentage { get; protected set; } - public abstract int memory_vram_used { get; protected set; } + public abstract double memory_vram_used { get; protected set; } + + public abstract double memory_vram_total { get; protected set; } public abstract double temperature { get; protected set; } @@ -23,6 +25,8 @@ public interface Monitor.IGPU : Object { public abstract void update_memory_vram_used (); + public abstract void update_memory_vram_total (); + public abstract void update_memory_percentage (); public abstract void update_percentage (); From 1e0645dfb2249a21918fefd9722b37b4bfb1190d Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Wed, 28 Feb 2024 18:38:08 +0100 Subject: [PATCH 003/486] format --- src/Resources/GPU/GPUAmd.vala | 5 ++-- src/Resources/GPU/GPUNvidia.vala | 40 ++++++++++++++++++++------------ src/Resources/GPU/IGPU.vala | 3 ++- 3 files changed, 30 insertions(+), 18 deletions(-) diff --git a/src/Resources/GPU/GPUAmd.vala b/src/Resources/GPU/GPUAmd.vala index 38ecc512..667ab300 100644 --- a/src/Resources/GPU/GPUAmd.vala +++ b/src/Resources/GPU/GPUAmd.vala @@ -1,5 +1,5 @@ public class Monitor.GPUAmd : IGPU, Object { - public SessionManager? session_manager { get; protected set; } + public SessionManager ? session_manager { get; protected set; } public Gee.HashMap hwmon_temperatures { get; set; } @@ -16,7 +16,7 @@ public class Monitor.GPUAmd : IGPU, Object { public double temperature { get; protected set; } construct { - // session_manager = get_sessman (); + // session_manager = get_sessman (); } private void update_temperature () { @@ -46,4 +46,5 @@ public class Monitor.GPUAmd : IGPU, Object { update_memory_percentage (); update_percentage (); } + } diff --git a/src/Resources/GPU/GPUNvidia.vala b/src/Resources/GPU/GPUNvidia.vala index 6c325634..1074d6a4 100644 --- a/src/Resources/GPU/GPUNvidia.vala +++ b/src/Resources/GPU/GPUNvidia.vala @@ -1,5 +1,5 @@ public class Monitor.GPUNvidia : IGPU, Object { - public SessionManager? session_manager { get; protected set; } + public SessionManager ? session_manager { get; protected set; } public Gee.HashMap hwmon_temperatures { get; set; } @@ -23,7 +23,7 @@ public class Monitor.GPUNvidia : IGPU, Object { public int nvidia_percentage = 0; - public char *nvidia_used = ""; + public char * nvidia_used = ""; public bool nvidia_resources_temperature; @@ -34,7 +34,7 @@ public class Monitor.GPUNvidia : IGPU, Object { public X.Display nvidia_display; construct { - // session_manager = get_sessman (); + // session_manager = get_sessman (); nvidia_display = new X.Display (); } @@ -45,7 +45,7 @@ public class Monitor.GPUNvidia : IGPU, Object { 0, NV_CTRL_GPU_CORE_TEMPERATURE, &nvidia_temperature - ); + ); if (!nvidia_resources_temperature) { warning ("Could not query NV_CTRL_GPU_CORE_TEMPERATURE attribute!\n"); @@ -59,11 +59,11 @@ public class Monitor.GPUNvidia : IGPU, Object { 0, NV_CTRL_USED_DEDICATED_GPU_MEMORY, &nvidia_memory_vram_used - ); + ); if (!nvidia_resources_vram_used) { warning ("Could not query NV_CTRL_USED_DEDICATED_GPU_MEMORY attribute!\n"); - return ; + return; } nvidia_resources_used = NVCtrl.XNVCTRLQueryTargetStringAttribute ( @@ -73,30 +73,39 @@ public class Monitor.GPUNvidia : IGPU, Object { 0, NV_CTRL_STRING_GPU_UTILIZATION, &nvidia_used - ); + ); // var str_used = (string)nvidia_used; - nvidia_percentage = int.parse (((string)nvidia_used).split_set ("=,")[1]); - nvidia_memory_percentage = int.parse (((string)nvidia_used).split_set ("=,")[3]); + nvidia_percentage = int.parse (((string) nvidia_used).split_set ("=,")[1]); + nvidia_memory_percentage = int.parse (((string) nvidia_used).split_set ("=,")[3]); debug ("USED_GRAPHICS: %d%\n", nvidia_percentage); debug ("USED_MEMORY: %d%\n", nvidia_memory_percentage); if (!nvidia_resources_used) { warning ("Could not query NV_CTRL_STRING_GPU_UTILIZATION attribute!\n"); - return ; + return; } } - private void update_temperature () { temperature = nvidia_temperature; } + private void update_temperature () { + temperature = nvidia_temperature; + } - private void update_memory_vram_used () { memory_vram_used = (double) nvidia_memory_vram_used; } + private void update_memory_vram_used () { + memory_vram_used = (double) nvidia_memory_vram_used; + } - private void update_memory_vram_total () { } + private void update_memory_vram_total () { + } - private void update_memory_percentage () { memory_percentage = nvidia_memory_percentage; } + private void update_memory_percentage () { + memory_percentage = nvidia_memory_percentage; + } - private void update_percentage () { percentage = nvidia_percentage; } + private void update_percentage () { + percentage = nvidia_percentage; + } public void update () { update_nv_resources (); @@ -105,4 +114,5 @@ public class Monitor.GPUNvidia : IGPU, Object { update_memory_percentage (); update_percentage (); } + } diff --git a/src/Resources/GPU/IGPU.vala b/src/Resources/GPU/IGPU.vala index bccbfc67..82abe02a 100644 --- a/src/Resources/GPU/IGPU.vala +++ b/src/Resources/GPU/IGPU.vala @@ -1,5 +1,5 @@ public interface Monitor.IGPU : Object { - public abstract SessionManager? session_manager { get; public set; } + public abstract SessionManager ? session_manager { get; public set; } public abstract Gee.HashMap hwmon_temperatures { get; set; } @@ -44,4 +44,5 @@ public interface Monitor.IGPU : Object { } return content; } + } From d21bceb3e01548e8d7ed9aeacf117d919abae959 Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Tue, 2 Apr 2024 18:20:00 +0200 Subject: [PATCH 004/486] bump 0.17.1 --- com.github.stsdc.monitor.spec | 2 +- debian/changelog | 6 ++++++ meson.build | 2 +- subprojects/stylesheet | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/com.github.stsdc.monitor.spec b/com.github.stsdc.monitor.spec index 4a916f94..8cc876ec 100755 --- a/com.github.stsdc.monitor.spec +++ b/com.github.stsdc.monitor.spec @@ -2,7 +2,7 @@ %global appname com.github.stsdc.monitor Name: com.github.stsdc.monitor -Version: 0.17.0 +Version: 0.17.1 Release: %autorelease Summary: Manage processes and monitor system resources License: GPLv3 diff --git a/debian/changelog b/debian/changelog index b6c76782..120d72fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +com.github.stsdc.monitor (0.17.1) jammy; urgency=low + + * Fix VRAM percentage + + -- Stanisław Dac Tue, 02 Apr 2024 18:16:26 +0000 + com.github.stsdc.monitor (0.17.0) jammy; urgency=low * Add GPU temperature to the Indicator diff --git a/meson.build b/meson.build index 2c47b0f3..453cb745 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('com.github.stsdc.monitor', 'vala', 'c', version: '0.17.0') +project('com.github.stsdc.monitor', 'vala', 'c', version: '0.17.1') # these are Meson modules gnome = import('gnome') diff --git a/subprojects/stylesheet b/subprojects/stylesheet index da0c4196..fbe2b247 160000 --- a/subprojects/stylesheet +++ b/subprojects/stylesheet @@ -1 +1 @@ -Subproject commit da0c4196ce246c6506a8a709f4140a098796fd4f +Subproject commit fbe2b24704bbfd489152350627033295b3770a38 From 942895120441aa6251631539d3fc8d3c4a150746 Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Tue, 2 Apr 2024 18:22:47 +0200 Subject: [PATCH 005/486] Remove extra semicoln --- src/Resources/GPU/GPUAmd.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/GPU/GPUAmd.vala b/src/Resources/GPU/GPUAmd.vala index 667ab300..289ae4c1 100644 --- a/src/Resources/GPU/GPUAmd.vala +++ b/src/Resources/GPU/GPUAmd.vala @@ -28,7 +28,7 @@ public class Monitor.GPUAmd : IGPU, Object { } private void update_memory_vram_total () { - memory_vram_total = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_total"));; + memory_vram_total = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_total")); } private void update_memory_percentage () { From ccd7d5060b483b77e2b23106997e2ea9b49edb84 Mon Sep 17 00:00:00 2001 From: ProPuke Date: Thu, 29 Aug 2024 22:23:32 +0100 Subject: [PATCH 006/486] added: additional indicators for cpu freq and vram added: additional status bar icons for gpu and vram fixed: nvidia vram indicator was displaying fb usage, not vram fixed: possible crash case when a gpu was not detected --- data/com.github.stsdc.monitor.gschema.xml | 20 +++- data/icons/icons.indicator.gresource.xml | 3 +- data/icons/memory-gpu-symbolic.svg | 112 ++++++++++++++++++ src/Indicator/Indicator.vala | 12 +- src/Indicator/Services/DBusClient.vala | 4 +- src/Indicator/Widgets/DisplayWidget.vala | 9 +- src/Indicator/Widgets/IndicatorWidget.vala | 6 + src/Resources/GPU/GPUNvidia.vala | 36 +++++- src/Resources/Resources.vala | 29 +++-- src/Resources/ResourcesSerialized.vala | 3 + src/Services/DBusServer.vala | 4 +- .../PreferencesIndicatorPage.vala | 108 ++++++++++++----- src/Widgets/Statusbar/Statusbar.vala | 28 +++++ tests/test_statusbar.vala | 5 +- vapi/libxnvctrl.vapi | 1 + 15 files changed, 320 insertions(+), 60 deletions(-) create mode 100644 data/icons/memory-gpu-symbolic.svg diff --git a/data/com.github.stsdc.monitor.gschema.xml b/data/com.github.stsdc.monitor.gschema.xml index a242f8ff..4bc27dbf 100644 --- a/data/com.github.stsdc.monitor.gschema.xml +++ b/data/com.github.stsdc.monitor.gschema.xml @@ -45,16 +45,21 @@ To show CPU usage in Monitor Indicator or not To show CPU usage in Monitor Indicator or not + + false + To show CPU frequency in Monitor Indicator or not + To show CPU frequency in Monitor Indicator or not + + + true + To show CPU temperature value in Monitor Indicator or not + To show CPU temperature value in Monitor Indicator or not + true To show memory usage in Monitor Indicator or not To show memory usage in Monitor Indicator or not - - true - To show temperature value in Monitor Indicator or not - To show temperature value in Monitor Indicator or not - false To show network up bandwidth data in Monitor Indicator or not @@ -70,6 +75,11 @@ To show GPU used percentage in Monitor Indicator or not To show GPU used percentage in Monitor Indicator or not + + false + To show GPU memory usage in Monitor Indicator or not + To show GPU memory usage in Monitor Indicator or not + false To show GPU temperature in Monitor Indicator or not diff --git a/data/icons/icons.indicator.gresource.xml b/data/icons/icons.indicator.gresource.xml index fc41b25c..7d4554d4 100644 --- a/data/icons/icons.indicator.gresource.xml +++ b/data/icons/icons.indicator.gresource.xml @@ -2,8 +2,9 @@ cpu-symbolic.svg - ram-symbolic.svg gpu-symbolic.svg + ram-symbolic.svg + memory-gpu-symbolic.svg swap-symbolic.svg file-deleted-symbolic.svg temperature-sensor-symbolic.svg diff --git a/data/icons/memory-gpu-symbolic.svg b/data/icons/memory-gpu-symbolic.svg new file mode 100644 index 00000000..bbb02f45 --- /dev/null +++ b/data/icons/memory-gpu-symbolic.svg @@ -0,0 +1,112 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/src/Indicator/Indicator.vala b/src/Indicator/Indicator.vala index 0a95547e..ecb31411 100644 --- a/src/Indicator/Indicator.vala +++ b/src/Indicator/Indicator.vala @@ -24,31 +24,37 @@ public class Monitor.Indicator : Wingpanel.Indicator { dbusclient.monitor_appeared.connect (() => { this.visible = settings.get_boolean ("indicator-state"); display_widget.cpu_widget.visible = settings.get_boolean ("indicator-cpu-state"); + display_widget.cpu_frequency_widget.visible = settings.get_boolean ("indicator-cpu-frequency-state"); + display_widget.cpu_temperature_widget.visible = settings.get_boolean ("indicator-cpu-temperature-state"); display_widget.memory_widget.visible = settings.get_boolean ("indicator-memory-state"); - display_widget.temperature_widget.visible = settings.get_boolean ("indicator-temperature-state"); display_widget.network_up_widget.visible = settings.get_boolean ("indicator-network-upload-state"); display_widget.network_down_widget.visible = settings.get_boolean ("indicator-network-download-state"); display_widget.gpu_widget.visible = settings.get_boolean ("indicator-gpu-state"); + display_widget.gpu_memory_widget.visible = settings.get_boolean ("indicator-gpu-memory-state"); display_widget.gpu_temperature_widget.visible = settings.get_boolean ("indicator-gpu-temperature-state"); }); dbusclient.interface.indicator_state.connect ((state) => this.visible = state); dbusclient.interface.indicator_cpu_state.connect ((state) => display_widget.cpu_widget.visible = state); + dbusclient.interface.indicator_cpu_frequency_state.connect ((state) => display_widget.cpu_frequency_widget.visible = state); + dbusclient.interface.indicator_cpu_temperature_state.connect ((state) => display_widget.cpu_temperature_widget.visible = state); dbusclient.interface.indicator_memory_state.connect ((state) => display_widget.memory_widget.visible = state); - dbusclient.interface.indicator_temperature_state.connect ((state) => display_widget.temperature_widget.visible = state); dbusclient.interface.indicator_network_up_state.connect ((state) => display_widget.network_up_widget.visible = state); dbusclient.interface.indicator_network_down_state.connect ((state) => display_widget.network_down_widget.visible = state); dbusclient.interface.indicator_gpu_state.connect ((state) => display_widget.gpu_widget.visible = state); + dbusclient.interface.indicator_gpu_memory_state.connect ((state) => display_widget.gpu_memory_widget.visible = state); dbusclient.interface.indicator_gpu_temperature_state.connect ((state) => display_widget.gpu_temperature_widget.visible = state); dbusclient.interface.update.connect ((sysres) => { display_widget.cpu_widget.state_percentage = sysres.cpu_percentage; - display_widget.temperature_widget.state_temperature = (int) Math.round (sysres.cpu_temperature); + display_widget.cpu_frequency_widget.state_frequency = sysres.cpu_frequency; + display_widget.cpu_temperature_widget.state_temperature = (int) Math.round (sysres.cpu_temperature); display_widget.memory_widget.state_percentage = sysres.memory_percentage; display_widget.network_up_widget.state_bandwidth = sysres.network_up; display_widget.network_down_widget.state_bandwidth = sysres.network_down; display_widget.gpu_widget.state_percentage = sysres.gpu_percentage; + display_widget.gpu_memory_widget.state_percentage = sysres.gpu_memory_percentage; display_widget.gpu_temperature_widget.state_temperature = (int) Math.round (sysres.gpu_temperature); }); diff --git a/src/Indicator/Services/DBusClient.vala b/src/Indicator/Services/DBusClient.vala index b15bfde9..0cfb81eb 100644 --- a/src/Indicator/Services/DBusClient.vala +++ b/src/Indicator/Services/DBusClient.vala @@ -5,11 +5,13 @@ public interface Monitor.DBusClientInterface : Object { public signal void update (ResourcesSerialized data); public signal void indicator_state (bool state); public signal void indicator_cpu_state (bool state); + public signal void indicator_cpu_frequency_state (bool state); + public signal void indicator_cpu_temperature_state (bool state); public signal void indicator_memory_state (bool state); - public signal void indicator_temperature_state (bool state); public signal void indicator_network_up_state (bool state); public signal void indicator_network_down_state (bool state); public signal void indicator_gpu_state (bool state); + public signal void indicator_gpu_memory_state (bool state); public signal void indicator_gpu_temperature_state (bool state); } diff --git a/src/Indicator/Widgets/DisplayWidget.vala b/src/Indicator/Widgets/DisplayWidget.vala index 3dc40ed2..d88a7720 100644 --- a/src/Indicator/Widgets/DisplayWidget.vala +++ b/src/Indicator/Widgets/DisplayWidget.vala @@ -1,22 +1,27 @@ public class Monitor.Widgets.DisplayWidget : Gtk.Grid { public IndicatorWidget cpu_widget = new IndicatorWidget ("cpu-symbolic"); + public IndicatorWidget cpu_frequency_widget = new IndicatorWidget ("cpu-symbolic"); + public IndicatorWidget cpu_temperature_widget = new IndicatorWidget ("temperature-sensor-symbolic"); + public IndicatorWidget memory_widget = new IndicatorWidget ("ram-symbolic"); - public IndicatorWidget temperature_widget = new IndicatorWidget ("temperature-sensor-symbolic"); public IndicatorWidget network_up_widget = new IndicatorWidget ("go-up-symbolic"); public IndicatorWidget network_down_widget = new IndicatorWidget ("go-down-symbolic"); public IndicatorWidget gpu_widget = new IndicatorWidget ("gpu-symbolic"); + public IndicatorWidget gpu_memory_widget = new IndicatorWidget ("memory-gpu-symbolic"); public IndicatorWidget gpu_temperature_widget = new IndicatorWidget ("temperature-gpu-symbolic"); construct { valign = Gtk.Align.CENTER; add (cpu_widget); + add (cpu_frequency_widget); + add (cpu_temperature_widget); add (memory_widget); add (gpu_widget); + add (gpu_memory_widget); add (gpu_temperature_widget); - add (temperature_widget); add (network_up_widget); add (network_down_widget); } diff --git a/src/Indicator/Widgets/IndicatorWidget.vala b/src/Indicator/Widgets/IndicatorWidget.vala index fd18308b..0344e0f8 100644 --- a/src/Indicator/Widgets/IndicatorWidget.vala +++ b/src/Indicator/Widgets/IndicatorWidget.vala @@ -23,6 +23,12 @@ public class Monitor.IndicatorWidget : Gtk.Box { } } + public double state_frequency { + set { + label.label = ("%.2f %s").printf (value, _("GHz")); + } + } + public int state_bandwidth { set { label.label = ("%s").printf (Utils.HumanUnitFormatter.string_bytes_to_human (value.to_string (), true)); diff --git a/src/Resources/GPU/GPUNvidia.vala b/src/Resources/GPU/GPUNvidia.vala index 1074d6a4..e9d5b687 100644 --- a/src/Resources/GPU/GPUNvidia.vala +++ b/src/Resources/GPU/GPUNvidia.vala @@ -9,6 +9,8 @@ public class Monitor.GPUNvidia : IGPU, Object { public int memory_percentage { get; protected set; } + public int fb_percentage { get; protected set; } + public double memory_vram_used { get; protected set; } public double memory_vram_total { get; set; } @@ -19,8 +21,12 @@ public class Monitor.GPUNvidia : IGPU, Object { public int nvidia_memory_vram_used = 0; + public int nvidia_memory_vram_total = 0; + public int nvidia_memory_percentage = 0; + public int nvidia_fb_percentage = 0; + public int nvidia_percentage = 0; public char * nvidia_used = ""; @@ -29,6 +35,8 @@ public class Monitor.GPUNvidia : IGPU, Object { public bool nvidia_resources_vram_used; + public bool nvidia_resources_vram_total; + public bool nvidia_resources_used; public X.Display nvidia_display; @@ -66,6 +74,20 @@ public class Monitor.GPUNvidia : IGPU, Object { return; } + nvidia_resources_vram_total = NVCtrl.XNVCTRLQueryTargetAttribute ( + nvidia_display, + NV_CTRL_TARGET_TYPE_GPU, + 0, + 0, + NV_CTRL_TOTAL_DEDICATED_GPU_MEMORY, + &nvidia_memory_vram_total + ); + + if (!nvidia_resources_vram_total) { + warning ("Could not query NV_CTRL_TOTAL_DEDICATED_GPU_MEMORY attribute!\n"); + return; + } + nvidia_resources_used = NVCtrl.XNVCTRLQueryTargetStringAttribute ( nvidia_display, NV_CTRL_TARGET_TYPE_GPU, @@ -77,9 +99,9 @@ public class Monitor.GPUNvidia : IGPU, Object { // var str_used = (string)nvidia_used; nvidia_percentage = int.parse (((string) nvidia_used).split_set ("=,")[1]); - nvidia_memory_percentage = int.parse (((string) nvidia_used).split_set ("=,")[3]); + nvidia_fb_percentage = int.parse (((string) nvidia_used).split_set ("=,")[3]); debug ("USED_GRAPHICS: %d%\n", nvidia_percentage); - debug ("USED_MEMORY: %d%\n", nvidia_memory_percentage); + debug ("USED_FB_MEMORY: %d%\n", nvidia_fb_percentage); if (!nvidia_resources_used) { warning ("Could not query NV_CTRL_STRING_GPU_UTILIZATION attribute!\n"); @@ -93,14 +115,19 @@ public class Monitor.GPUNvidia : IGPU, Object { } private void update_memory_vram_used () { - memory_vram_used = (double) nvidia_memory_vram_used; + memory_vram_used = (double) nvidia_memory_vram_used * 1000000.0; } private void update_memory_vram_total () { + memory_vram_total = (double) nvidia_memory_vram_total * 1000000.0; } private void update_memory_percentage () { - memory_percentage = nvidia_memory_percentage; + memory_percentage = (int) (Math.round ((memory_vram_used / memory_vram_total) * 100)); + } + + private void update_fb_percentage () { + fb_percentage = nvidia_fb_percentage; } private void update_percentage () { @@ -111,6 +138,7 @@ public class Monitor.GPUNvidia : IGPU, Object { update_nv_resources (); update_temperature (); update_memory_vram_used (); + update_memory_vram_total (); update_memory_percentage (); update_percentage (); } diff --git a/src/Resources/Resources.vala b/src/Resources/Resources.vala index 1238dd0b..00353c83 100644 --- a/src/Resources/Resources.vala +++ b/src/Resources/Resources.vala @@ -75,19 +75,22 @@ public class Monitor.Resources : Object { public ResourcesSerialized serialize () { return ResourcesSerialized () { - cpu_percentage = cpu.percentage, - cpu_frequency = cpu.frequency, - cpu_temperature = cpu.temperature_mean, - memory_percentage = memory.used_percentage, - memory_used = memory.used, - memory_total = memory.total, - swap_percentage = swap.percentage, - swap_used = swap.used, - swap_total = swap.total, - network_up = network.bytes_out, - network_down = network.bytes_in, - gpu_percentage = gpu != null ? gpu.percentage : 0, - gpu_temperature = gpu.temperature + cpu_percentage = cpu.percentage, + cpu_frequency = cpu.frequency, + cpu_temperature = cpu.temperature_mean, + memory_percentage = memory.used_percentage, + memory_used = memory.used, + memory_total = memory.total, + swap_percentage = swap.percentage, + swap_used = swap.used, + swap_total = swap.total, + network_up = network.bytes_out, + network_down = network.bytes_in, + gpu_percentage = gpu != null ? gpu.percentage : 0, + gpu_memory_percentage = gpu != null ? gpu.memory_percentage : 0, + gpu_memory_used = gpu != null ? gpu.memory_vram_used : 0, + gpu_memory_total = gpu != null ? gpu.memory_vram_total : 0, + gpu_temperature = gpu != null ? gpu.temperature : 0 }; } } diff --git a/src/Resources/ResourcesSerialized.vala b/src/Resources/ResourcesSerialized.vala index b389793c..e19a2856 100644 --- a/src/Resources/ResourcesSerialized.vala +++ b/src/Resources/ResourcesSerialized.vala @@ -11,5 +11,8 @@ public struct ResourcesSerialized { public int network_up; public int network_down; public int gpu_percentage; + public uint gpu_memory_percentage; + public double gpu_memory_used; + public double gpu_memory_total; public double gpu_temperature; } diff --git a/src/Services/DBusServer.vala b/src/Services/DBusServer.vala index f19f0840..d072be6f 100644 --- a/src/Services/DBusServer.vala +++ b/src/Services/DBusServer.vala @@ -12,11 +12,13 @@ public class Monitor.DBusServer : Object { public signal void update (ResourcesSerialized data); public signal void indicator_state (bool state); public signal void indicator_cpu_state (bool state); + public signal void indicator_cpu_frequency_state (bool state); + public signal void indicator_cpu_temperature_state (bool state); public signal void indicator_memory_state (bool state); - public signal void indicator_temperature_state (bool state); public signal void indicator_network_up_state (bool state); public signal void indicator_network_down_state (bool state); public signal void indicator_gpu_state (bool state); + public signal void indicator_gpu_memory_state (bool state); public signal void indicator_gpu_temperature_state (bool state); public signal void quit (); public signal void show (); diff --git a/src/Views/PreferencesView/PreferencesIndicatorPage.vala b/src/Views/PreferencesView/PreferencesIndicatorPage.vala index 57af79ba..28ad0153 100644 --- a/src/Views/PreferencesView/PreferencesIndicatorPage.vala +++ b/src/Views/PreferencesView/PreferencesIndicatorPage.vala @@ -34,6 +34,31 @@ dbusserver.indicator_cpu_state (cpu_percentage_switch.state); }); + var cpu_frequency_label = new Gtk.Label (_("Display CPU frequency")); + cpu_frequency_label.halign = Gtk.Align.START; + cpu_frequency_label.xalign = 1; + + var cpu_frequency_switch = new Gtk.Switch (); + cpu_frequency_switch.halign = Gtk.Align.END; + cpu_frequency_switch.hexpand = true; + cpu_frequency_switch.state = MonitorApp.settings.get_boolean ("indicator-cpu-frequency-state"); + cpu_frequency_switch.notify["active"].connect (() => { + MonitorApp.settings.set_boolean ("indicator-cpu-frequency-state", cpu_frequency_switch.state); + dbusserver.indicator_cpu_frequency_state (cpu_frequency_switch.state); + }); + + var cpu_temperature_label = new Gtk.Label (_("Display CPU temperature")); + cpu_temperature_label.halign = Gtk.Align.START; + cpu_temperature_label.xalign = 1; + + var cpu_temperature_switch = new Gtk.Switch (); + cpu_temperature_switch.halign = Gtk.Align.END; + cpu_temperature_switch.state = MonitorApp.settings.get_boolean ("indicator-cpu-temperature-state"); + cpu_temperature_switch.notify["active"].connect (() => { + MonitorApp.settings.set_boolean ("indicator-cpu-temperature-state", cpu_temperature_switch.state); + dbusserver.indicator_cpu_temperature_state (cpu_temperature_switch.state); + }); + var memory_label = new Gtk.Label (_("Display RAM percentage")); memory_label.halign = Gtk.Align.START; memory_label.xalign = 1; @@ -44,19 +69,7 @@ memory_percentage_switch.notify["active"].connect (() => { MonitorApp.settings.set_boolean ("indicator-memory-state", memory_percentage_switch.state); dbusserver.indicator_memory_state (memory_percentage_switch.state); - }); - - var temperature_label = new Gtk.Label (_("Display temperature")); - temperature_label.halign = Gtk.Align.START; - temperature_label.xalign = 1; - - var temperature_switch = new Gtk.Switch (); - temperature_switch.halign = Gtk.Align.END; - temperature_switch.state = MonitorApp.settings.get_boolean ("indicator-temperature-state"); - temperature_switch.notify["active"].connect (() => { - MonitorApp.settings.set_boolean ("indicator-temperature-state", temperature_switch.state); - dbusserver.indicator_temperature_state (temperature_switch.state); - }); + }); var network_upload_label = new Gtk.Label (_("Display network upload")); network_upload_label.halign = Gtk.Align.START; @@ -94,9 +107,21 @@ dbusserver.indicator_gpu_state (gpu_percentage_switch.state); }); + var gpu_memory_label = new Gtk.Label (_("Display VRAM percentage")); + gpu_memory_label.halign = Gtk.Align.START; + gpu_memory_label.xalign = 1; + + var gpu_memory_switch = new Gtk.Switch (); + gpu_memory_switch.halign = Gtk.Align.END; + gpu_memory_switch.state = MonitorApp.settings.get_boolean ("indicator-gpu-memory-state"); + gpu_memory_switch.notify["active"].connect (() => { + MonitorApp.settings.set_boolean ("indicator-gpu-temperature-state", gpu_memory_switch.state); + dbusserver.indicator_gpu_memory_state (gpu_memory_switch.state); + }); + var gpu_temperature_label = new Gtk.Label (_("Display GPU temperature")); - gpu_label.halign = Gtk.Align.START; - gpu_label.xalign = 1; + gpu_temperature_label.halign = Gtk.Align.START; + gpu_temperature_label.xalign = 1; var gpu_temperature_switch = new Gtk.Switch (); gpu_temperature_switch.halign = Gtk.Align.END; @@ -106,26 +131,51 @@ dbusserver.indicator_gpu_temperature_state (gpu_temperature_switch.state); }); - content_area.attach (cpu_label, 0, 0, 1, 1); - content_area.attach (cpu_percentage_switch, 1, 0, 1, 1); + var row = 0; + + content_area.attach (cpu_label, 0, row, 1, 1); + content_area.attach (cpu_percentage_switch, 1, row, 1, 1); + row++; + + content_area.attach (cpu_frequency_label, 0, row, 1, 1); + content_area.attach (cpu_frequency_switch, 1, row, 1, 1); + row++; + + content_area.attach (cpu_temperature_label, 0, row, 1, 1); + content_area.attach (cpu_temperature_switch, 1, row, 1, 1); + row++; + + content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + row++; + + content_area.attach (memory_label, 0, row, 1, 1); + content_area.attach (memory_percentage_switch, 1, row, 1, 1); + row++; + + content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + row++; - content_area.attach (memory_label, 0, 1, 1, 1); - content_area.attach (memory_percentage_switch, 1, 1, 1, 1); + content_area.attach (gpu_label, 0, row, 1, 1); + content_area.attach (gpu_percentage_switch, 1, row, 1, 1); + row++; - content_area.attach (gpu_label, 0, 2, 1, 1); - content_area.attach (gpu_percentage_switch, 1, 2, 1, 1); + content_area.attach (gpu_memory_label, 0, row, 1, 1); + content_area.attach (gpu_memory_switch, 1, row, 1, 1); + row++; - content_area.attach (gpu_temperature_label, 0, 3, 1, 1); - content_area.attach (gpu_temperature_switch, 1, 3, 1, 1); + content_area.attach (gpu_temperature_label, 0, row, 1, 1); + content_area.attach (gpu_temperature_switch, 1, row, 1, 1); + row++; - content_area.attach (temperature_label, 0, 4, 1, 1); - content_area.attach (temperature_switch, 1, 4, 1, 1); + content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + row++; - content_area.attach (network_upload_label, 0, 5, 1, 1); - content_area.attach (network_upload_switch, 1, 5, 1, 1); + content_area.attach (network_upload_label, 0, row, 1, 1); + content_area.attach (network_upload_switch, 1, row, 1, 1); + row++; - content_area.attach (network_download_label, 0, 6, 1, 1); - content_area.attach (network_download_switch, 1, 6, 1, 1); + content_area.attach (network_download_label, 0, row, 1, 1); + content_area.attach (network_download_switch, 1, row, 1, 1); update_status (); diff --git a/src/Widgets/Statusbar/Statusbar.vala b/src/Widgets/Statusbar/Statusbar.vala index ed45634c..5ddd28be 100644 --- a/src/Widgets/Statusbar/Statusbar.vala +++ b/src/Widgets/Statusbar/Statusbar.vala @@ -2,6 +2,8 @@ public class Monitor.Statusbar : Gtk.ActionBar { Gtk.Label cpu_usage_label; Gtk.Label memory_usage_label; Gtk.Label swap_usage_label; + Gtk.Label gpu_usage_label; + Gtk.Label gpu_memory_usage_label; construct { var cpu_icon = new Gtk.Image.from_icon_name ("cpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { @@ -16,6 +18,14 @@ public class Monitor.Statusbar : Gtk.ActionBar { tooltip_text = _("Swap") }; + var gpu_icon = new Gtk.Image.from_icon_name ("gpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { + tooltip_text = _("GPU") + }; + + var gpu_memory_icon = new Gtk.Image.from_icon_name ("memory-gpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { + tooltip_text = _("VRAM") + }; + cpu_usage_label = new Gtk.Label (_("Calculating…")); cpu_usage_label.set_width_chars (4); cpu_usage_label.xalign = 0; @@ -36,6 +46,19 @@ public class Monitor.Statusbar : Gtk.ActionBar { pack_start (swap_icon); pack_start (swap_usage_label); + gpu_usage_label = new Gtk.Label (_("Calculating…")); + gpu_usage_label.set_width_chars (4); + gpu_usage_label.xalign = 0; + pack_start (gpu_icon); + pack_start (gpu_usage_label); + + gpu_memory_usage_label = new Gtk.Label (_("Calculating…")); + gpu_memory_usage_label.set_width_chars (4); + gpu_memory_usage_label.xalign = 0; + gpu_memory_icon.margin_start = 6; + pack_start (gpu_memory_icon); + pack_start (gpu_memory_usage_label); + var support_ua_label = new Gtk.LinkButton.with_label ("http://stand-with-ukraine.pp.ua/", _("🇺🇦")); var github_label = new Gtk.LinkButton.with_label ("https://github.com/stsdc/monitor", _("Check on Github")); @@ -65,6 +88,8 @@ public class Monitor.Statusbar : Gtk.ActionBar { public bool update (ResourcesSerialized sysres) { cpu_usage_label.set_text (("%d%%").printf (sysres.cpu_percentage)); memory_usage_label.set_text (("%u%%").printf (sysres.memory_percentage)); + gpu_usage_label.set_text (("%d%%").printf (sysres.gpu_percentage)); + gpu_memory_usage_label.set_text (("%u%%").printf (sysres.gpu_memory_percentage)); string cpu_tooltip_text = ("%.2f %s").printf (sysres.cpu_frequency, _("GHz")); cpu_usage_label.tooltip_text = cpu_tooltip_text; @@ -72,6 +97,9 @@ public class Monitor.Statusbar : Gtk.ActionBar { string memory_tooltip_text = ("%s / %s").printf (Utils.HumanUnitFormatter.double_bytes_to_human (sysres.memory_used), Utils.HumanUnitFormatter.double_bytes_to_human (sysres.memory_total)); memory_usage_label.tooltip_text = memory_tooltip_text; + string gpu_memory_tooltip_text = ("%s / %s").printf (Utils.HumanUnitFormatter.double_bytes_to_human (sysres.gpu_memory_used), Utils.HumanUnitFormatter.double_bytes_to_human (sysres.gpu_memory_total)); + gpu_memory_usage_label.tooltip_text = gpu_memory_tooltip_text; + // The total amount of the swap is 0 when it is unavailable if (sysres.swap_total == 0) { swap_usage_label.set_text ("N/A"); diff --git a/tests/test_statusbar.vala b/tests/test_statusbar.vala index b0ad7c78..29ca5eb3 100644 --- a/tests/test_statusbar.vala +++ b/tests/test_statusbar.vala @@ -16,7 +16,10 @@ private void test_statusbar () { swap_used = 0.1, swap_total = 1.0, network_up = 12, - network_down = 23 + network_down = 23, + gpu_percentage = 20 + gpu_memory_percentage = 10 + gpu_temperature = 31.0 }; bool update_result = statusbar.update (sysres); diff --git a/vapi/libxnvctrl.vapi b/vapi/libxnvctrl.vapi index 472829e5..3e3b8d2a 100644 --- a/vapi/libxnvctrl.vapi +++ b/vapi/libxnvctrl.vapi @@ -35,6 +35,7 @@ public const uint NV_CTRL_GPU_CURRENT_CLOCK_FREQS; public const uint NV_CTRL_TOTAL_GPU_MEMORY; public const uint NV_CTRL_STRING_GPU_UTILIZATION; public const uint NV_CTRL_USED_DEDICATED_GPU_MEMORY; +public const uint NV_CTRL_TOTAL_DEDICATED_GPU_MEMORY; public const uint NV_CTRL_GPU_CURRENT_PROCESSOR_CLOCK_FREQS; public const uint NV_CTRL_STRING_PRODUCT_NAME; public const uint NV_CTRL_PCI_ID; From f5b9aaf7ed5f283ee625b5202c6d2effd4189815 Mon Sep 17 00:00:00 2001 From: ProPuke Date: Thu, 29 Aug 2024 23:54:36 +0100 Subject: [PATCH 007/486] tidy: lint --- src/Views/PreferencesView/PreferencesIndicatorPage.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Views/PreferencesView/PreferencesIndicatorPage.vala b/src/Views/PreferencesView/PreferencesIndicatorPage.vala index 28ad0153..038e045b 100644 --- a/src/Views/PreferencesView/PreferencesIndicatorPage.vala +++ b/src/Views/PreferencesView/PreferencesIndicatorPage.vala @@ -69,7 +69,7 @@ memory_percentage_switch.notify["active"].connect (() => { MonitorApp.settings.set_boolean ("indicator-memory-state", memory_percentage_switch.state); dbusserver.indicator_memory_state (memory_percentage_switch.state); - }); + }); var network_upload_label = new Gtk.Label (_("Display network upload")); network_upload_label.halign = Gtk.Align.START; @@ -145,14 +145,14 @@ content_area.attach (cpu_temperature_switch, 1, row, 1, 1); row++; - content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + content_area.attach (new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); row++; content_area.attach (memory_label, 0, row, 1, 1); content_area.attach (memory_percentage_switch, 1, row, 1, 1); row++; - content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + content_area.attach (new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); row++; content_area.attach (gpu_label, 0, row, 1, 1); @@ -167,7 +167,7 @@ content_area.attach (gpu_temperature_switch, 1, row, 1, 1); row++; - content_area.attach(new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); + content_area.attach (new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, row, 2, 1); row++; content_area.attach (network_upload_label, 0, row, 1, 1); From 764e56e980beefe4a4f1f084ac577089f321df7b Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Wed, 4 Sep 2024 23:33:53 +0200 Subject: [PATCH 008/486] Add path detection for AMD GPU --- src/Resources/GPU/GPUAmd.vala | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/src/Resources/GPU/GPUAmd.vala b/src/Resources/GPU/GPUAmd.vala index 289ae4c1..2b299637 100644 --- a/src/Resources/GPU/GPUAmd.vala +++ b/src/Resources/GPU/GPUAmd.vala @@ -15,8 +15,33 @@ public class Monitor.GPUAmd : IGPU, Object { public double temperature { get; protected set; } + private string path { get; set; } + construct { // session_manager = get_sessman (); + // When path for GPU is created it can be assigned to card0 or card1 + // this a bit random. This should be removed when multiple GPU + // support will be added. + try { + var dir = Dir.open ("/sys/class/drm/"); + string ? name; + while ((name = dir.read_name ()) != null) { + if (name == "card0") { + path = "/sys/class/drm/card0/"; + debug ("GPU path: %s", path); + + } else if (name == "card1") { + path = "/sys/class/drm/card1/"; + debug ("GPU path: %s", path); + + } + } + if (path == null) { + debug ("Can't detect right path for AMD GPU"); + } + } catch (Error e) { + print ("Error: %s\n", e.message); + } } private void update_temperature () { @@ -24,11 +49,11 @@ public class Monitor.GPUAmd : IGPU, Object { } private void update_memory_vram_used () { - memory_vram_used = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_used")); + memory_vram_used = double.parse (get_sysfs_value (path + "device/mem_info_vram_used")); } private void update_memory_vram_total () { - memory_vram_total = double.parse (get_sysfs_value ("/sys/class/drm/card0/device/mem_info_vram_total")); + memory_vram_total = double.parse (get_sysfs_value (path + "device/mem_info_vram_total")); } private void update_memory_percentage () { @@ -36,7 +61,7 @@ public class Monitor.GPUAmd : IGPU, Object { } private void update_percentage () { - percentage = int.parse (get_sysfs_value ("/sys/class/drm/card0/device/gpu_busy_percent")); + percentage = int.parse (get_sysfs_value (path + "device/gpu_busy_percent")); } public void update () { From b4c12adbb1d97816c02c157775147a64b9011b7c Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Sat, 7 Sep 2024 01:00:27 +0200 Subject: [PATCH 009/486] Tried my best with an vram icon --- data/icons/gpu-vram-symbolic.svg | 151 +++++++++++++++++++++++ data/icons/icons.indicator.gresource.xml | 2 +- data/icons/memory-gpu-symbolic.svg | 112 ----------------- src/Indicator/Widgets/DisplayWidget.vala | 2 +- src/Widgets/Statusbar/Statusbar.vala | 2 +- 5 files changed, 154 insertions(+), 115 deletions(-) create mode 100644 data/icons/gpu-vram-symbolic.svg delete mode 100644 data/icons/memory-gpu-symbolic.svg diff --git a/data/icons/gpu-vram-symbolic.svg b/data/icons/gpu-vram-symbolic.svg new file mode 100644 index 00000000..5b97cf1a --- /dev/null +++ b/data/icons/gpu-vram-symbolic.svg @@ -0,0 +1,151 @@ + +image/svg+xml diff --git a/data/icons/icons.indicator.gresource.xml b/data/icons/icons.indicator.gresource.xml index 7d4554d4..ed6a446b 100644 --- a/data/icons/icons.indicator.gresource.xml +++ b/data/icons/icons.indicator.gresource.xml @@ -4,7 +4,7 @@ cpu-symbolic.svg gpu-symbolic.svg ram-symbolic.svg - memory-gpu-symbolic.svg + gpu-vram-symbolic.svg swap-symbolic.svg file-deleted-symbolic.svg temperature-sensor-symbolic.svg diff --git a/data/icons/memory-gpu-symbolic.svg b/data/icons/memory-gpu-symbolic.svg deleted file mode 100644 index bbb02f45..00000000 --- a/data/icons/memory-gpu-symbolic.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/src/Indicator/Widgets/DisplayWidget.vala b/src/Indicator/Widgets/DisplayWidget.vala index d88a7720..eb1992ed 100644 --- a/src/Indicator/Widgets/DisplayWidget.vala +++ b/src/Indicator/Widgets/DisplayWidget.vala @@ -9,7 +9,7 @@ public class Monitor.Widgets.DisplayWidget : Gtk.Grid { public IndicatorWidget network_down_widget = new IndicatorWidget ("go-down-symbolic"); public IndicatorWidget gpu_widget = new IndicatorWidget ("gpu-symbolic"); - public IndicatorWidget gpu_memory_widget = new IndicatorWidget ("memory-gpu-symbolic"); + public IndicatorWidget gpu_memory_widget = new IndicatorWidget ("gpu-vram-symbolic"); public IndicatorWidget gpu_temperature_widget = new IndicatorWidget ("temperature-gpu-symbolic"); construct { diff --git a/src/Widgets/Statusbar/Statusbar.vala b/src/Widgets/Statusbar/Statusbar.vala index 5ddd28be..dc76ff0f 100644 --- a/src/Widgets/Statusbar/Statusbar.vala +++ b/src/Widgets/Statusbar/Statusbar.vala @@ -22,7 +22,7 @@ public class Monitor.Statusbar : Gtk.ActionBar { tooltip_text = _("GPU") }; - var gpu_memory_icon = new Gtk.Image.from_icon_name ("memory-gpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { + var gpu_memory_icon = new Gtk.Image.from_icon_name ("gpu-vram-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { tooltip_text = _("VRAM") }; From d78914bfa45858124717ee72c9e29b56f6486ba7 Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Sat, 7 Sep 2024 01:20:55 +0200 Subject: [PATCH 010/486] Remove vram from the statusbar; add some margin for gpu icon in statusbar --- src/Widgets/Statusbar/Statusbar.vala | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/Widgets/Statusbar/Statusbar.vala b/src/Widgets/Statusbar/Statusbar.vala index dc76ff0f..1ccdd42a 100644 --- a/src/Widgets/Statusbar/Statusbar.vala +++ b/src/Widgets/Statusbar/Statusbar.vala @@ -22,10 +22,6 @@ public class Monitor.Statusbar : Gtk.ActionBar { tooltip_text = _("GPU") }; - var gpu_memory_icon = new Gtk.Image.from_icon_name ("gpu-vram-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { - tooltip_text = _("VRAM") - }; - cpu_usage_label = new Gtk.Label (_("Calculating…")); cpu_usage_label.set_width_chars (4); cpu_usage_label.xalign = 0; @@ -49,16 +45,10 @@ public class Monitor.Statusbar : Gtk.ActionBar { gpu_usage_label = new Gtk.Label (_("Calculating…")); gpu_usage_label.set_width_chars (4); gpu_usage_label.xalign = 0; + gpu_icon.margin_start = 6; pack_start (gpu_icon); pack_start (gpu_usage_label); - gpu_memory_usage_label = new Gtk.Label (_("Calculating…")); - gpu_memory_usage_label.set_width_chars (4); - gpu_memory_usage_label.xalign = 0; - gpu_memory_icon.margin_start = 6; - pack_start (gpu_memory_icon); - pack_start (gpu_memory_usage_label); - var support_ua_label = new Gtk.LinkButton.with_label ("http://stand-with-ukraine.pp.ua/", _("🇺🇦")); var github_label = new Gtk.LinkButton.with_label ("https://github.com/stsdc/monitor", _("Check on Github")); From 7fa2d2e4c9d35fe4b0977842b9efb3282d84e4fb Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Sat, 7 Sep 2024 10:42:34 +0200 Subject: [PATCH 011/486] Update po files --- po/com.github.stsdc.monitor.pot | 147 ++++++---- po/de.po | 374 ++++++++++++++++++-------- po/es.po | 374 ++++++++++++++++++-------- po/fr.po | 374 ++++++++++++++++++-------- po/it.po | 372 ++++++++++++++++++-------- po/ja.po | 184 +++++++++---- po/lt.po | 373 ++++++++++++++++++-------- po/nl.po | 327 +++++++++++++--------- po/pl.po | 400 +++++++++++++++++++-------- po/pt.po | 181 +++++++++---- po/ro.po | 461 +++++++++++++++++++++++--------- po/ru.po | 186 ++++++++----- po/tr.po | 375 ++++++++++++++++++-------- po/uk.po | 191 ++++++++----- 14 files changed, 2989 insertions(+), 1330 deletions(-) diff --git a/po/com.github.stsdc.monitor.pot b/po/com.github.stsdc.monitor.pot index 44788e18..89d30ab7 100644 --- a/po/com.github.stsdc.monitor.pot +++ b/po/com.github.stsdc.monitor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-19 14:24+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,18 +17,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -57,7 +61,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:82 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "" @@ -98,32 +102,32 @@ msgstr "" msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -147,27 +151,27 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:78 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:84 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:85 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:95 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:102 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" @@ -180,13 +184,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "" @@ -202,19 +206,47 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:23 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:32 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -229,42 +261,50 @@ msgid "Display CPU percentage" msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display RAM percentage" +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 -msgid "Enabled" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 -msgid "Disabled" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "Utilization" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:22 +#: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:26 +#: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" msgstr "" @@ -274,18 +314,18 @@ msgstr "" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:88 +#: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:134 -#: src/Widgets/Statusbar/Statusbar.vala:71 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:161 -msgid "Threads" +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 @@ -408,26 +448,27 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 -msgid "Calculating…" +msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:37 -msgid "Peace" +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:39 -msgid "Check on Github" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:40 -msgid "Donate 💸" +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" msgstr "" #: src/Widgets/WidgetResource/WidgetResource.vala:11 diff --git a/po/de.po b/po/de.po index b8a59f17..1b11247a 100644 --- a/po/de.po +++ b/po/de.po @@ -1,22 +1,30 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Prozess Name" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -26,23 +34,23 @@ msgstr "" msgid "N/A" msgstr "" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -54,10 +62,6 @@ msgstr "Zeige Monitor" msgid "Quit Monitor" msgstr "Beende Monitor" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "" @@ -70,50 +74,50 @@ msgstr "" msgid "No" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -137,43 +141,46 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Prozess beenden" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Ausgewählten Prozess beenden" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Prozess abwürgen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Ausgewählten Prozess abwürgen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Prozess Name" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Arbeitsspeicher" @@ -187,136 +194,279 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Im Hintergrund ausführen:" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Zeige einen Indikator:" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +#, fuzzy +msgid "Indicator" +msgstr "Monitor Indikator" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Einstellungen" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Zeige einen Indikator:" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Im Hintergrund ausführen:" +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Einstellungen" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Suche Prozess" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Geben Sie den zu suchenden Prozessnamen oder die PID ein" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Berechne…" -#~ msgid "Monitor Indicator" -#~ msgstr "Monitor Indikator" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" #~ msgid "Show system resources" #~ msgstr "Zeige Systemressourcen an" diff --git a/po/es.po b/po/es.po index 89466c7c..2a7b96a8 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2019-06-03 23:25+0100\n" "Last-Translator: Mario Rodrigo\n" "Language-Team: \n" @@ -19,18 +19,26 @@ msgstr "" "X-Generator: Gtranslator 2.91.7\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Nombre del proceso" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -40,23 +48,23 @@ msgstr "" msgid "N/A" msgstr "" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -68,10 +76,6 @@ msgstr "Mostrar Monitor" msgid "Quit Monitor" msgstr "Cerrar Monitor" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "" @@ -84,50 +88,50 @@ msgstr "" msgid "No" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -151,43 +155,46 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Terminar proceso" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Terminar proceso" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Matar proceso" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Matar los procesos seleccionados" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Nombre del proceso" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Memoria" @@ -201,136 +208,279 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Arrancar en segundo plano:" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Mostrar un icono en el panel:" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +#, fuzzy +msgid "Indicator" +msgstr "Icono de monitorización" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Preferencias" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Mostrar un icono en el panel:" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Arrancar en segundo plano:" +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Preferencias" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Buscar proceso" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Introduce el nombre del proceso o el PID" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Calculando…" -#~ msgid "Monitor Indicator" -#~ msgstr "Icono de monitorización" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" #~ msgid "Show system resources" #~ msgstr "Mostrar recursos del sistema" diff --git a/po/fr.po b/po/fr.po index dd5d452b..071efd54 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2019-11-03 14:15+0200\n" "Last-Translator: Nathan Bonnemains\n" "Language-Team: \n" @@ -17,18 +17,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Nom du processus" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -38,23 +46,23 @@ msgstr "" msgid "N/A" msgstr "" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "Kio" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "Mio" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "Gio" @@ -66,10 +74,6 @@ msgstr "Afficher Monitor" msgid "Quit Monitor" msgstr "Quitter Monitor" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "" @@ -82,50 +86,50 @@ msgstr "" msgid "No" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -149,43 +153,46 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Mettre fin au processus" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Mettre fin au processus sélectionné" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Tuer le processus" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Tuer le processus sélectionné" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Nom du processus" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Mémoire" @@ -199,136 +206,279 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Démarrer en arrière-plan :" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Afficher un indicateur :" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +#, fuzzy +msgid "Indicator" +msgstr "Indicateur du panneau" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Paramètres" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Afficher un indicateur :" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Démarrer en arrière-plan :" +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Paramètres" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Rechercher un processus" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Tapez le nom d'un processus ou un PID à rechercher" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Calcul en cours…" -#~ msgid "Monitor Indicator" -#~ msgstr "Indicateur du panneau" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" #~ msgid "Show system resources" #~ msgstr "Afficher les ressources du système" diff --git a/po/it.po b/po/it.po index 0aa95555..a45a27cb 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2019-03-31 10:59+0200\n" "Last-Translator: Raí B. Toffoletto \n" "Language-Team: \n" @@ -19,18 +19,26 @@ msgstr "" "X-Generator: Gtranslator 2.91.7\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Nome del processo" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -40,23 +48,23 @@ msgstr "" msgid "N/A" msgstr "" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -68,10 +76,6 @@ msgstr "Apri il Monitor" msgid "Quit Monitor" msgstr "Chiudi il Monitor" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "" @@ -84,50 +88,50 @@ msgstr "" msgid "No" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -151,45 +155,48 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 #, fuzzy msgid "End Process" msgstr "Terminare processo" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 #, fuzzy msgid "End selected process" msgstr "Terminare processo" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Nome del processo" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Memoria" @@ -203,137 +210,280 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Mostra icona nel pannello" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +#, fuzzy +msgid "Indicator" +msgstr "Icona nel pannello" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Preferenze" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Mostra icona nel pannello" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Preferenze" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Cerca un processo" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 #, fuzzy msgid "Type process name or PID to search" msgstr "Digita il nome del processo o il PID" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "" -#~ msgid "Monitor Indicator" -#~ msgstr "Icona nel pannello" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" #~ msgid "Show system resources" #~ msgstr "Mostra risorse di sistema" diff --git a/po/ja.po b/po/ja.po index 9f7667ec..f5e5b37b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-22 19:13+0900\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2022-10-22 19:33+0900\n" "Last-Translator: Ryo Nakano \n" "Language-Team: none\n" @@ -17,18 +17,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "モニター" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "プロセス" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "システム" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -57,7 +61,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:82 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -98,31 +102,32 @@ msgstr "優先度" msgid "THR" msgstr "スレッド数" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "ディスクの入出力待ち" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "アイドル中のカーネルスレッド" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "実行中、あるいは実行可能のプロセス" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 -msgid "The process is in an interruptible sleep; waiting for an event to complete" +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" msgstr "スリープ中、あるいはイベントの完了待ちのプロセス" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "ジョブコントロールシグナルによって停止されたプロセス" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "トレース中にデバッガーによって停止されたプロセス" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "終了したが、親プロセスによって回収されなかった子プロセス" @@ -146,27 +151,27 @@ msgstr "読み出し/書き込み" msgid "Cancelled write" msgstr "キャンセルされた書き込み" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:78 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "プロセスを終了" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "選択したプロセスを終了します" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:84 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "プロセスを強制終了" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:85 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "選択したプロセスを強制終了します" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:95 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "プロセスを強制終了してもよろしいですか?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:102 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "プロセスを終了してもよろしいですか?" @@ -179,13 +184,13 @@ msgid "Process Name" msgstr "プロセス名" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "メモリー" @@ -201,19 +206,49 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "一般" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:23 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "バックグラウンドで起動:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:32 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#, fuzzy +msgid "Update every (requires restart):" +msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +#, fuzzy +msgid "Show containers tab (requires restart):" +msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Wingpanel にインジケーターを表示" @@ -228,42 +263,55 @@ msgid "Display CPU percentage" msgstr "CPU 使用率を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display RAM percentage" -msgstr "RAM 使用率を表示" +#, fuzzy +msgid "Display CPU frequency" +msgstr "CPU 使用率を表示" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +#, fuzzy +msgid "Display CPU temperature" msgstr "温度を表示" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "RAM 使用率を表示" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "ネットワーク送信量を表示" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "ネットワーク受信量を表示" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +#, fuzzy +msgid "Display GPU percentage" +msgstr "CPU 使用率を表示" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +#, fuzzy +msgid "Display VRAM percentage" +msgstr "RAM 使用率を表示" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +#, fuzzy +msgid "Display GPU temperature" +msgstr "温度を表示" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" msgstr "有効" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" msgstr "無効" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "Utilization" -msgstr "使用率" - -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" -msgstr "詳細情報を表示します" - -#: src/Views/SystemView/SystemCPUView.vala:22 +#: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" msgstr "周波数" -#: src/Views/SystemView/SystemCPUView.vala:26 +#: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" msgstr "温度" @@ -273,19 +321,20 @@ msgstr "温度" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:88 +#: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemCPUView.vala:134 -#: src/Widgets/Statusbar/Statusbar.vala:71 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "GHz" -#: src/Views/SystemView/SystemCPUView.vala:161 -msgid "Threads" -msgstr "スレッド" +#: src/Views/SystemView/SystemCPUView.vala:153 +#, fuzzy +msgid "THREADS" +msgstr "読み込み" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -407,28 +456,45 @@ msgstr "プロセスを検索" msgid "Type process name or PID to search" msgstr "プロセス名か PID を入力して検索" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "スワップ" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "計算しています…" -#: src/Widgets/Statusbar/Statusbar.vala:37 -msgid "Peace" -msgstr "平和の象徴" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:39 +#: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" msgstr "GitHub で確認" -#: src/Widgets/Statusbar/Statusbar.vala:40 -msgid "Donate 💸" -msgstr "寄付 💸" - #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "使用率" + +#~ msgid "Utilization" +#~ msgstr "使用率" + +#~ msgid "Show detailed info" +#~ msgstr "詳細情報を表示します" + +#~ msgid "Threads" +#~ msgstr "スレッド" + +#~ msgid "Peace" +#~ msgstr "平和の象徴" + +#~ msgid "Donate 💸" +#~ msgstr "寄付 💸" diff --git a/po/lt.po b/po/lt.po index 0df16f43..ac992d8f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2017-09-07 11:24+0300\n" "Last-Translator: Moo\n" "Language-Team: \n" @@ -16,21 +16,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Proceso pavadinimas" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -40,23 +48,23 @@ msgstr "" msgid "N/A" msgstr "" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -70,10 +78,6 @@ msgstr "Monitor" msgid "Quit Monitor" msgstr "Monitor" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "" @@ -86,50 +90,50 @@ msgstr "" msgid "No" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -153,46 +157,49 @@ msgstr "" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 #, fuzzy msgid "End Process" msgstr "Užbaigti procesą" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 #, fuzzy msgid "End selected process" msgstr "Užbaigti procesą" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 #, fuzzy msgid "Kill Process" msgstr "Ieškoti proceso" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Proceso pavadinimas" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Atmintis" @@ -206,136 +213,280 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Monitor" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -#, fuzzy -msgid "Show an indicator:" -msgstr "Monitor" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Ieškoti proceso" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 #, fuzzy msgid "Type process name or PID to search" msgstr "Įrašykite proceso pavadinimą ar PID" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" + #~ msgid "Background Applications" #~ msgstr "Foninės programos" diff --git a/po/nl.po b/po/nl.po index b91a2fb2..f496855c 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 00:35+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2022-01-11 14:25+0100\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -12,18 +12,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:10 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "Processen" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "Systeem" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -52,7 +56,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:58 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -64,19 +68,15 @@ msgstr "Monitor tonen" msgid "Quit Monitor" msgstr "Monitor afsluiten" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:55 -msgid "Deleted" -msgstr "Verwijderd" - -#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:19 +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "Weet je zeker dat je dit wilt doen?" -#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:22 +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" msgstr "Ja" -#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:26 +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" msgstr "Nee" @@ -97,34 +97,34 @@ msgstr "PRI" msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "De toepassing wacht op een ononderbreekbare slaapstand" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "Inactieve kernel-thread" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "Het proces is actief of activeerbaar (in de wachtrij)" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" "Het proces bevindt zich in een ononderbreekbare slaapstand, wachtend op " "afronding van een handeling" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "Het proces is afgebroken door een taaksignaal" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "Het proces is afgebroken door een foutopsporingstoepassing" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" "De toepassing is gedwongen afgesloten, maar niet door het bovenliggende " @@ -150,27 +150,27 @@ msgstr "Uitgelezen/Weggeschreven" msgid "Cancelled write" msgstr "Wegschrijven afgebroken" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Proces beëindigen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Geselecteerd proces beëindigen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Proces vernietigen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Geselecteerd proces vernietigen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Weet je het zeker?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Weet je het zeker?" @@ -183,39 +183,72 @@ msgid "Process Name" msgstr "Procesnaam" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Geheugen" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:48 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" msgstr "CPU: %.1f%%" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:49 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format msgid "RAM: %.1f%%" msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:17 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Algemeen" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "Geminimaliseerd opstarten:" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 -msgid "Show Indicator in Wingpanel" +#, fuzzy +msgid "Show indicator in Wingpanel" msgstr "Indicator tonen op Wingpanel" #. header: "Simple Pages", @@ -228,45 +261,59 @@ msgid "Display CPU percentage" msgstr "CPU-percentage tonen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display Memory percentage" -msgstr "Geheugenpercentage tonen" +#, fuzzy +msgid "Display CPU frequency" +msgstr "CPU-percentage tonen" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +#, fuzzy +msgid "Display CPU temperature" msgstr "Temperatuur tonen" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +#, fuzzy +msgid "Display RAM percentage" +msgstr "CPU-percentage tonen" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "Uploadsnelheid tonen" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "Downloadsnelheid tonen" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +#, fuzzy +msgid "Display GPU percentage" +msgstr "CPU-percentage tonen" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +#, fuzzy +msgid "Display VRAM percentage" +msgstr "CPU-percentage tonen" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +#, fuzzy +msgid "Display GPU temperature" +msgstr "Temperatuur tonen" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" msgstr "Ingeschakeld" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" msgstr "Uitgeschakeld" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "UTILIZATION" -msgstr "GEBRUIK" - -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" -msgstr "Uitgebreide informatie tonen" - -#: src/Views/SystemView/SystemCPUView.vala:22 -msgid "FREQUENCY" -msgstr "FREQUENTIE" +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:26 -#: src/Views/SystemView/SystemGPUView.vala:16 -msgid "TEMPERATURE" -msgstr "TEMPERATUUR" +#: src/Views/SystemView/SystemCPUView.vala:21 +#, fuzzy +msgid "Temperature" +msgstr "Temperatuur tonen" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -274,17 +321,17 @@ msgstr "TEMPERATUUR" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:84 -#: src/Views/SystemView/SystemGPUView.vala:76 +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemCPUView.vala:115 -#: src/Widgets/Statusbar/Statusbar.vala:47 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "GHz" -#: src/Views/SystemView/SystemCPUView.vala:142 +#: src/Views/SystemView/SystemCPUView.vala:153 msgid "THREADS" msgstr "AANTAL KERNEN" @@ -312,83 +359,65 @@ msgstr "Microcode-versie:" msgid "Bogomips:" msgstr "Bogomips:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:57 -msgid "L1 Instruction cache:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +#, fuzzy +msgid "L1 Instruction cache: " msgstr "L1-instructiecache:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:60 -msgid "L1 Data cache:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +#, fuzzy +msgid "L1 Data cache: " msgstr "L1-gegevenscache:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:63 -msgid "L1 cache:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +#, fuzzy +msgid "L1 cache: " msgstr "L1-cache:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 -msgid "L2 Cache size:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +#, fuzzy +msgid "L2 Cache size: " msgstr "L2-cache-omvang:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:67 -msgid "L3 Cache size:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +#, fuzzy +msgid "L3 Cache size: " msgstr "L3-cache-omvang:" -#: src/Views/SystemView/SystemCPUInfoPopover.vala:68 -msgid "Address sizes:" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +#, fuzzy +msgid "Address sizes: " msgstr "Adresgroottes:" -#: src/Views/SystemView/SystemMemoryView.vala:19 -msgid "Total: " -msgstr "Totaal: " - -#: src/Views/SystemView/SystemMemoryView.vala:22 -msgid "Used: " -msgstr "Gebruikt: " - -#: src/Views/SystemView/SystemMemoryView.vala:25 -msgid "Shared: " -msgstr "Gedeeld: " - -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "Buffered: " +#: src/Views/SystemView/SystemMemoryView.vala:5 +#, fuzzy +msgid "Buffered" msgstr "Gebufferd: " -#: src/Views/SystemView/SystemMemoryView.vala:31 -msgid "Cached: " +#: src/Views/SystemView/SystemMemoryView.vala:6 +#, fuzzy +msgid "Cached" msgstr "Gecachet: " -#: src/Views/SystemView/SystemMemoryView.vala:34 -msgid "Locked: " +#: src/Views/SystemView/SystemMemoryView.vala:7 +#, fuzzy +msgid "Locked" msgstr "Vergrendeld: " -#: src/Views/SystemView/SystemMemoryView.vala:64 -#, c-format -msgid "Total: %s" -msgstr "Totaal: %s" - -#: src/Views/SystemView/SystemMemoryView.vala:65 -#, c-format -msgid "Used: %s" -msgstr "Gebruikt: %s" - -#: src/Views/SystemView/SystemMemoryView.vala:66 -#, c-format -msgid "Shared: %s" -msgstr "Gedeeld: %s" - -#: src/Views/SystemView/SystemMemoryView.vala:67 -#, c-format -msgid "Buffered: %s" -msgstr "Gebufferd: %s" +#: src/Views/SystemView/SystemMemoryView.vala:8 +#, fuzzy +msgid "Total" +msgstr "Totaal: " -#: src/Views/SystemView/SystemMemoryView.vala:68 -#, c-format -msgid "Cached: %s" -msgstr "Gecachet: %s" +#: src/Views/SystemView/SystemMemoryView.vala:9 +#, fuzzy +msgid "Used" +msgstr "Gebruikt: " -#: src/Views/SystemView/SystemMemoryView.vala:69 -#, c-format -msgid "Locked: %s" -msgstr "Vergrendeld: %s" +#: src/Views/SystemView/SystemMemoryView.vala:10 +#, fuzzy +msgid "Shared" +msgstr "Gedeeld: " #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" @@ -422,7 +451,11 @@ msgstr "Niet aangekoppeld" msgid "VRAM" msgstr "VRAM" -#: src/Widgets/Headerbar/Headerbar.vala:18 +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "TEMPERATUUR" + +#: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" msgstr "Instellingen" @@ -434,20 +467,70 @@ msgstr "Zoeken naar proces" msgid "Type process name or PID to search" msgstr "Voer de procesnaam of pid in" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Wisselgeheugen" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Bezig met berekenen…" -#: src/Widgets/Statusbar/Statusbar.vala:36 +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" msgstr "Controleren op GitHub" +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "GEBRUIK" + +#~ msgid "Deleted" +#~ msgstr "Verwijderd" + +#~ msgid "Display Memory percentage" +#~ msgstr "Geheugenpercentage tonen" + +#~ msgid "Show detailed info" +#~ msgstr "Uitgebreide informatie tonen" + +#~ msgid "FREQUENCY" +#~ msgstr "FREQUENTIE" + +#, c-format +#~ msgid "Total: %s" +#~ msgstr "Totaal: %s" + +#, c-format +#~ msgid "Used: %s" +#~ msgstr "Gebruikt: %s" + +#, c-format +#~ msgid "Shared: %s" +#~ msgstr "Gedeeld: %s" + +#, c-format +#~ msgid "Buffered: %s" +#~ msgstr "Gebufferd: %s" + +#, c-format +#~ msgid "Cached: %s" +#~ msgstr "Gecachet: %s" + +#, c-format +#~ msgid "Locked: %s" +#~ msgstr "Vergrendeld: %s" + #~ msgid "Hide detailed info" #~ msgstr "Uitgebreide informatie verbergen" diff --git a/po/pl.po b/po/pl.po index ad894995..7737302b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,24 +1,34 @@ msgid "" msgstr "" +"Project-Id-Version: Monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" -"Project-Id-Version: Monitor\n" -"Language: pl\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Nazwa procesu" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "System" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -28,23 +38,23 @@ msgstr "System" msgid "N/A" msgstr "B/D" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "B" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -56,10 +66,6 @@ msgstr "Pokaż Monitor" msgid "Quit Monitor" msgstr "Wyjdź" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "Usunięto" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "Masz pewność, że chcesz to zrobić?" @@ -72,48 +78,49 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "NI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 msgid "PRI" msgstr "PRI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 -msgid "The process is in an interruptible sleep; waiting for an event to complete" +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -137,172 +144,343 @@ msgstr "Przeczytano/Zapisano" msgid "Cancelled write" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Zakończ proces" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Zakończ wybrany proces" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Zabij proces" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Zabij wybrany proces" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Potwierdzasz zabicie procesu?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Potwierdzasz zakończenie procesu?" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Nazwa procesu" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Pamięć" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format msgid "CPU: %.1f%%" msgstr "CPU: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format msgid "RAM: %.1f%%" msgstr "RAM: %.1f%%" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" -msgstr "Pokaż szczegóły" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Uruchamiaj w tle" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" -msgstr "CZĘSTOTLIWOŚĆ" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" -msgstr "TEMPERATURA" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" -msgstr "Ukryj szczegóły" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -msgid "%d%%" -msgstr "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" -msgstr "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Pokaż indykator" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:154 +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "GHz" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Ustawienia" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Pokaż indykator" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Uruchamiaj w tle" +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "TEMPERATURA" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Ustawienia" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Wyszukaj proces" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Wpisz nazwę procesu lub PID" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Obliczam…" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" + +#~ msgid "Deleted" +#~ msgstr "Usunięto" + +#~ msgid "Show detailed info" +#~ msgstr "Pokaż szczegóły" + +#~ msgid "FREQUENCY" +#~ msgstr "CZĘSTOTLIWOŚĆ" + +#~ msgid "Hide detailed info" +#~ msgstr "Ukryj szczegóły" + +#~ msgid "%d%%" +#~ msgstr "%d%%" diff --git a/po/pt.po b/po/pt.po index 78387296..64654cbd 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-19 14:24+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2022-08-07 22:21+0100\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: \n" @@ -19,18 +19,22 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.1.1\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "Processos" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "Sistema" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -59,7 +63,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:82 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -100,35 +104,35 @@ msgstr "PRI" msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "A aplicação está à espera num modo de suspensão de disco ininterrupto" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "Fio de execução de kernel inativo" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" "O processo está em execução ou pode ser executado (na fila de execução)" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" "O processo está numa suspensão interrompível; a espera da conclusão de um " "evento" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "O processo é interrompido por um sinal de controlo do trabalho" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "O processo é interrompido por um depurador durante o rastreio" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "A aplicação é terminada mas não recuperada pela sua origem" @@ -152,27 +156,27 @@ msgstr "Leitura/Escrita" msgid "Cancelled write" msgstr "Escrita cancelada" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:78 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Terminar processo" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Terminar processo selecionado" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:84 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Eliminar processo" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:85 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Eliminar processo selecionado" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:95 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Confirma a eliminação do processo?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:102 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Confirmar o fim do processo?" @@ -185,13 +189,13 @@ msgid "Process Name" msgstr "Nome do processo" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Memória" @@ -207,19 +211,49 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Geral" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:23 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "Inicia em segundo plano:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:32 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#, fuzzy +msgid "Update every (requires restart):" +msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +#, fuzzy +msgid "Show containers tab (requires restart):" +msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Mostrar indicador no Wingpanel" @@ -234,42 +268,55 @@ msgid "Display CPU percentage" msgstr "Mostrar percentagem da CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display RAM percentage" -msgstr "Mostrar percentagem da RAM" +#, fuzzy +msgid "Display CPU frequency" +msgstr "Mostrar percentagem da CPU" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +#, fuzzy +msgid "Display CPU temperature" msgstr "Mostrar temperatura" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "Mostrar percentagem da RAM" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "Mostrar envio de rede" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "Mostrar recepção de rede" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +#, fuzzy +msgid "Display GPU percentage" +msgstr "Mostrar percentagem da CPU" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +#, fuzzy +msgid "Display VRAM percentage" +msgstr "Mostrar percentagem da RAM" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +#, fuzzy +msgid "Display GPU temperature" +msgstr "Mostrar temperatura" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" msgstr "Ativado" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" msgstr "Desativado" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "Utilization" -msgstr "Utilização" - -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" -msgstr "Mostrar informação detalhada" - -#: src/Views/SystemView/SystemCPUView.vala:22 +#: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" msgstr "Frequência" -#: src/Views/SystemView/SystemCPUView.vala:26 +#: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" msgstr "Temperatura" @@ -279,19 +326,20 @@ msgstr "Temperatura" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:88 +#: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemCPUView.vala:134 -#: src/Widgets/Statusbar/Statusbar.vala:71 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "GHz" -#: src/Views/SystemView/SystemCPUView.vala:161 -msgid "Threads" -msgstr "Threads" +#: src/Views/SystemView/SystemCPUView.vala:153 +#, fuzzy +msgid "THREADS" +msgstr "LER" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -413,32 +461,49 @@ msgstr "Procurar processo" msgid "Type process name or PID to search" msgstr "Escreva o nome do processo ou PID a pesquisar" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Swap" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "A calcular…" -#: src/Widgets/Statusbar/Statusbar.vala:37 -msgid "Peace" -msgstr "Paz" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:39 +#: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" msgstr "Confira no Github" -#: src/Widgets/Statusbar/Statusbar.vala:40 -msgid "Donate 💸" -msgstr "Doar 💸" - #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "UTILIZAÇÃO" +#~ msgid "Utilization" +#~ msgstr "Utilização" + +#~ msgid "Show detailed info" +#~ msgstr "Mostrar informação detalhada" + +#~ msgid "Threads" +#~ msgstr "Threads" + +#~ msgid "Peace" +#~ msgstr "Paz" + +#~ msgid "Donate 💸" +#~ msgstr "Doar 💸" + #~ msgid "Deleted" #~ msgstr "Eliminado" diff --git a/po/ro.po b/po/ro.po index 21aaf019..2feee89b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-16 10:30+0200\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2020-12-16 10:30+0200\n" "Last-Translator: Tiberiu Frățilă\n" "Language-Team: \n" @@ -15,20 +15,29 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" "X-Generator: Poedit 2.0.6\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 msgid "Processes" msgstr "Procese" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 msgid "System" msgstr "Sistem" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -38,23 +47,23 @@ msgstr "Sistem" msgid "N/A" msgstr "N/A" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "o" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "Kio" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "Mio" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "Gio" @@ -66,10 +75,6 @@ msgstr "Arată monitorul" msgid "Quit Monitor" msgstr "Închide monitorul" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "Șters" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "Sunteți sigur că doriți să faceți asta?" @@ -82,48 +87,49 @@ msgstr "Da" msgid "No" msgstr "Nu" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "NI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 msgid "PRI" msgstr "PRI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "Procesul rulează sau poate fi rulat (în coada de rulare)" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 -msgid "The process is in an interruptible sleep; waiting for an event to complete" +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -147,43 +153,46 @@ msgstr "Citit/scris" msgid "Cancelled write" msgstr "Scriere anulată" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Termină procesul" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Termină procesul selectat" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Omoară procesul" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Omoară procesul selectat" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Confirmi omorârea procesului?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Confirmi terminarea procesului?" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Numele procesului" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "Procesor" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Memorie" @@ -197,136 +206,328 @@ msgstr "Procesor: %.1f%%" msgid "RAM: %.1f%%" msgstr "Memorie: %.1f%%" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" -msgstr "UTILIZARE" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" -msgstr "Arată informații detaliate" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Pornește în fundal:" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" -msgstr "FRECVENȚĂ" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" -msgstr "TEMPERATURĂ" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" -msgstr "Ascunde informațiile detaliate" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" -msgstr "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 -msgid "GHz" -msgstr "GHz" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Arată un indicator:" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +#, fuzzy +msgid "Indicator" +msgstr "Indicateur du panneau" -#: src/Views/SystemView/SystemCPUView.vala:154 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " -msgstr "Total: " +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "GHz" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " -msgstr "Folosit: " +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " -msgstr "Partajat: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +#, fuzzy +msgid "L1 cache: " +msgstr "Cache: " + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +#, fuzzy +msgid "L2 Cache size: " +msgstr "Cache: " + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +#, fuzzy +msgid "L3 Cache size: " +msgstr "Cache: " + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +#, fuzzy +msgid "Buffered" msgstr "Buffer: " -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemMemoryView.vala:6 +#, fuzzy +msgid "Cached" msgstr "Cache: " -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemMemoryView.vala:7 +#, fuzzy +msgid "Locked" msgstr "Blocat: " -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" -msgstr "Total: %s" +#: src/Views/SystemView/SystemMemoryView.vala:8 +#, fuzzy +msgid "Total" +msgstr "Total: " -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" -msgstr "Folosit: %s" +#: src/Views/SystemView/SystemMemoryView.vala:9 +#, fuzzy +msgid "Used" +msgstr "Folosit: " -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" -msgstr "Partajat: %s" +#: src/Views/SystemView/SystemMemoryView.vala:10 +#, fuzzy +msgid "Shared" +msgstr "Partajat: " -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" -msgstr "Buffer: %s" +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" -msgstr "Cache: %s" +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" -msgstr "Blocat: %s" +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Configurări" +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Arată un indicator:" +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Pornește în fundal:" +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "TEMPERATURĂ" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Configurări" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Caută un proces" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Introdu numele unui proces sau un PID pentru a căuta" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Swap" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "Procesor" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Se calculează..." -#~ msgid "Monitor Indicator" -#~ msgstr "Indicateur du panneau" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "UTILIZARE" + +#~ msgid "Deleted" +#~ msgstr "Șters" + +#~ msgid "Show detailed info" +#~ msgstr "Arată informații detaliate" + +#~ msgid "FREQUENCY" +#~ msgstr "FRECVENȚĂ" + +#~ msgid "Hide detailed info" +#~ msgstr "Ascunde informațiile detaliate" + +#, c-format +#~ msgid "%d%%" +#~ msgstr "%d%%" + +#, c-format +#~ msgid "Total: %s" +#~ msgstr "Total: %s" + +#, c-format +#~ msgid "Used: %s" +#~ msgstr "Folosit: %s" + +#, c-format +#~ msgid "Shared: %s" +#~ msgstr "Partajat: %s" + +#, c-format +#~ msgid "Buffered: %s" +#~ msgstr "Buffer: %s" + +#, c-format +#~ msgid "Cached: %s" +#~ msgstr "Cache: %s" + +#, c-format +#~ msgid "Locked: %s" +#~ msgstr "Blocat: %s" #~ msgid "Show system resources" #~ msgstr "Afficher les ressources du système" diff --git a/po/ru.po b/po/ru.po index a9a70ada..f506a53f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-19 14:24+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: \n" "Last-Translator: Andrey Kultyapov \n" "Language-Team: \n" @@ -12,18 +12,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Монитор" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "Процессы" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "Система" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -52,7 +56,7 @@ msgstr "МиБ" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:82 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "ГиБ" @@ -93,31 +97,32 @@ msgstr "PRI" msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "Приложение ожидает в непрерывном режиме ожидания диска" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "Неактивный поток ядра" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "Процесс запущен или готов к выполнению (в очереди выполнения)" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 -msgid "The process is in an interruptible sleep; waiting for an event to complete" +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" msgstr "Процесс находится в прерывистом сне; ожидая завершения события" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "Процесс останавливается сигналом управления заданием" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "Процесс остановлен отладчиком во время трассировки" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "Приложение завершается, но не используется родителем" @@ -141,27 +146,27 @@ msgstr "Чтение/Запись" msgid "Cancelled write" msgstr "Отменённая запись" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:78 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Завершить процесс" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Завершает выбранные процессы" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:84 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Убить процесс" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:85 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Убивает выбранные процессы" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:95 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Действительно убить процесс?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:102 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Действительно завершить процесс?" @@ -174,13 +179,13 @@ msgid "Process Name" msgstr "Имя процесса" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "ЦПУ" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Память" @@ -196,19 +201,49 @@ msgstr "Память: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Общие" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:23 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "Запустить в фоновом режиме:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:32 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#, fuzzy +msgid "Update every (requires restart):" +msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +#, fuzzy +msgid "Show containers tab (requires restart):" +msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Показывать индикаторы в Wingpanel" @@ -223,42 +258,55 @@ msgid "Display CPU percentage" msgstr "Использование процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display RAM percentage" -msgstr "Использование памяти" +#, fuzzy +msgid "Display CPU frequency" +msgstr "Использование процессора" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +#, fuzzy +msgid "Display CPU temperature" msgstr "Температура процессора" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "Использование памяти" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "Скорость отдачи сети" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "Скорость загрузки сети" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +#, fuzzy +msgid "Display GPU percentage" +msgstr "Использование процессора" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +#, fuzzy +msgid "Display VRAM percentage" +msgstr "Использование памяти" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +#, fuzzy +msgid "Display GPU temperature" +msgstr "Температура процессора" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" msgstr "Включен" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" msgstr "Отключен" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "Utilization" -msgstr "Использование" - -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" -msgstr "Показать подробную информацию" - -#: src/Views/SystemView/SystemCPUView.vala:22 +#: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" msgstr "Частота" -#: src/Views/SystemView/SystemCPUView.vala:26 +#: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" msgstr "Температура" @@ -268,19 +316,19 @@ msgstr "Температура" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:88 +#: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemCPUView.vala:134 -#: src/Widgets/Statusbar/Statusbar.vala:71 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "ГГц" -#: src/Views/SystemView/SystemCPUView.vala:161 -msgid "Threads" -msgstr "Потоки" +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "ПОТОКИ" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -402,32 +450,49 @@ msgstr "Найти процесс" msgid "Type process name or PID to search" msgstr "Для поиска введите имя или ИД процесса" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Подкачка" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "ЦПУ" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Вычисление…" -#: src/Widgets/Statusbar/Statusbar.vala:37 -msgid "Peace" -msgstr "Мир" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:39 +#: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" msgstr "Проект на Github" -#: src/Widgets/Statusbar/Statusbar.vala:40 -msgid "Donate 💸" -msgstr "Пожертвовать 💸" - #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "ИСПОЛЬЗОВАНИЕ" +#~ msgid "Utilization" +#~ msgstr "Использование" + +#~ msgid "Show detailed info" +#~ msgstr "Показать подробную информацию" + +#~ msgid "Threads" +#~ msgstr "Потоки" + +#~ msgid "Peace" +#~ msgstr "Мир" + +#~ msgid "Donate 💸" +#~ msgstr "Пожертвовать 💸" + #~ msgid "Deleted" #~ msgstr "Удалено" @@ -437,9 +502,6 @@ msgstr "ИСПОЛЬЗОВАНИЕ" #~ msgid "FREQUENCY" #~ msgstr "ЧАСТОТА" -#~ msgid "THREADS" -#~ msgstr "ПОТОКИ" - #~ msgid "Total: %s" #~ msgstr "Всего: %s" diff --git a/po/tr.po b/po/tr.po index e4757ded..7df15e97 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-25 22:12+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2020-04-15 21:51+0100\n" "Last-Translator: Harun Yasar \n" "Language-Team: none\n" @@ -17,19 +17,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/MainWindow.vala:34 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "Monitor" + +#: src/MainWindow.vala:39 #, fuzzy msgid "Processes" msgstr "Süreç Adı" -#: src/MainWindow.vala:35 +#: src/MainWindow.vala:40 #, fuzzy msgid "System" msgstr "Sistem çağrıları" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:32 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 @@ -39,23 +47,23 @@ msgstr "Sistem çağrıları" msgid "N/A" msgstr "N/A" -#: src/Utils.vala:67 +#: src/Utils.vala:76 msgid "B" msgstr "B" -#: src/Utils.vala:72 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:116 +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" msgstr "KiB" -#: src/Utils.vala:78 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:121 +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" msgstr "MiB" -#: src/Utils.vala:83 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:127 -#: src/Widgets/Statusbar/Statusbar.vala:55 +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "GiB" @@ -67,10 +75,6 @@ msgstr "Monitor'ü Göster" msgid "Quit Monitor" msgstr "Monitor'ü Kapat" -#: src/Views/ProcessView/ProcessInfoView/OpenFilesListBox.vala:56 -msgid "Deleted" -msgstr "Silindi" - #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" msgstr "Bunu yapmak istediğinizden emin misiniz?" @@ -83,49 +87,49 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:39 -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:59 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" msgstr "PID" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:40 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" msgstr "NI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:41 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 msgid "PRI" msgstr "PRI" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:110 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" @@ -149,43 +153,46 @@ msgstr "Okuma/Yazma" msgid "Cancelled write" msgstr "Geçersiz yazma" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:73 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Süreci Sonlandır" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:75 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Seçilen süreci sonlandır" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:79 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Süreci Öldür" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Seçilen süreci öldür" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Süreç öldürülsün mü?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Süreç sonlandırılsın mı?" +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* #. setup name column -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:17 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" msgstr "Süreç Adı" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "CPU" -#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:49 -#: src/Views/SystemView/SystemMemoryView.vala:26 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Bellek" @@ -199,130 +206,278 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:32 -#: src/Views/SystemView/SystemMemoryView.vala:28 -msgid "UTILIZATION" +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "Arka planda başlat:" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:34 -#: src/Views/SystemView/SystemCPUView.vala:94 -#: src/Views/SystemView/SystemMemoryView.vala:30 -#: src/Views/SystemView/SystemMemoryView.vala:35 -msgid "Show detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:36 -msgid "FREQUENCY" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:40 -msgid "TEMPERATURE" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:96 -#: src/Views/SystemView/SystemMemoryView.vala:37 -msgid "Hide detailed info" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:152 -#: src/Views/SystemView/SystemMemoryView.vala:100 -#, c-format -msgid "%d%%" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" msgstr "" -#: src/Views/SystemView/SystemCPUView.vala:153 -#: src/Widgets/Statusbar/Statusbar.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +#, fuzzy +msgid "Show indicator in Wingpanel" +msgstr "Belirteç göster:" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "GHz" -#: src/Views/SystemView/SystemCPUView.vala:154 -msgid "℃" +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:41 -msgid "Total: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:44 -msgid "Used: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:47 -msgid "Shared: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:50 -msgid "Buffered: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:53 -msgid "Cached: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:56 -msgid "Locked: " +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:103 -#, c-format -msgid "Total: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:104 -#, c-format -msgid "Used: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:105 -#, c-format -msgid "Shared: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:106 -#, c-format -msgid "Buffered: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:107 -#, c-format -msgid "Cached: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " msgstr "" -#: src/Views/SystemView/SystemMemoryView.vala:108 -#, c-format -msgid "Locked: %s" +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:13 -msgid "Monitor" -msgstr "Monitor" +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:21 -msgid "Settings" -msgstr "Ayarlar" +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:35 -msgid "Show an indicator:" -msgstr "Belirteç göster:" +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" -#: src/Widgets/Headerbar/Headerbar.vala:41 -msgid "Start in background:" -msgstr "Arka planda başlat:" +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" -#: src/Widgets/Headerbar/Search.vala:14 +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "Ayarlar" + +#: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" msgstr "Süreç Ara" -#: src/Widgets/Headerbar/Search.vala:15 +#: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" msgstr "Aramak için süreç adı veya PID yazın" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Takas" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "CPU" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Hesaplanıyor…" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" + +#~ msgid "Deleted" +#~ msgstr "Silindi" diff --git a/po/uk.po b/po/uk.po index f46b19c4..c14dc37b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-19 14:24+0400\n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" "PO-Revision-Date: 2022-07-17 21:36+0200\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: \n" @@ -15,22 +15,26 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.1\n" -#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Монітор" -#: src/MainWindow.vala:37 +#: src/MainWindow.vala:39 msgid "Processes" msgstr "Процеси" -#: src/MainWindow.vala:38 +#: src/MainWindow.vala:40 msgid "System" msgstr "Система" +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -59,7 +63,7 @@ msgstr "МіБ" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:82 +#: src/Widgets/Statusbar/Statusbar.vala:98 msgid "GiB" msgstr "ГіБ" @@ -100,32 +104,32 @@ msgstr "PRI" msgid "THR" msgstr "THR" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:112 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "Застосунок очікує у безперервному режимі сну на диску" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:114 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" msgstr "Ненавантажений потік ядра" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:116 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "Процес запущено або готовий до запуску (в черзі виконання)" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:118 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "Процес знаходиться в переривному режимі сну; очікує завершення події" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:120 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" msgstr "Процес зупинено сигналом керування завданням" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:122 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" msgstr "Процес зупинено зневаджувачем під час трасування" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:124 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "Застосунок завершено, але не використовується батьківським процесом" @@ -149,27 +153,27 @@ msgstr "Читання/запис" msgid "Cancelled write" msgstr "Скасовані записування" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:78 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" msgstr "Завершити процес" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:80 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" msgstr "Завершити вибраний процес" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:84 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" msgstr "Вбити процес" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:85 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" msgstr "Вбити вибраний процес" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:95 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" msgstr "Підтверджуєте вбивство процесу?" -#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:102 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" msgstr "Підтверджуєте завершення процесу?" @@ -182,13 +186,13 @@ msgid "Process Name" msgstr "Назва процесу" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:8 +#: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" msgstr "Процесор" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:11 +#: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" msgstr "Пам'ять" @@ -204,22 +208,51 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Загальнi" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:23 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" msgstr "Запустити у фоні:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:32 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#, fuzzy +msgid "Update every (requires restart):" +msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +#, fuzzy +msgid "Show containers tab (requires restart):" +msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" + #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy -#| msgid "Show an indicator:" msgid "Show indicator in Wingpanel" msgstr "Показати індикатор:" @@ -233,42 +266,55 @@ msgid "Display CPU percentage" msgstr "Показати відсоток ЦП" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -msgid "Display RAM percentage" -msgstr "Показати відсоток оперативної пам'яті" +#, fuzzy +msgid "Display CPU frequency" +msgstr "Показати відсоток ЦП" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:49 -msgid "Display temperature" +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +#, fuzzy +msgid "Display CPU temperature" msgstr "Відображення температури" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:61 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "Показати відсоток оперативної пам'яті" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:73 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" msgstr "" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:103 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +#, fuzzy +msgid "Display GPU percentage" +msgstr "Показати відсоток ЦП" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +#, fuzzy +msgid "Display VRAM percentage" +msgstr "Показати відсоток оперативної пам'яті" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +#, fuzzy +msgid "Display GPU temperature" +msgstr "Відображення температури" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" msgstr "Увімкнено" -#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:108 +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" msgstr "Вимкнено" -#: src/Views/SystemView/SystemCPUView.vala:18 -msgid "Utilization" -msgstr "Утилізація" - -#: src/Views/SystemView/SystemCPUView.vala:20 -msgid "Show detailed info" -msgstr "Показати подробиці" - -#: src/Views/SystemView/SystemCPUView.vala:22 +#: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" msgstr "Частота" -#: src/Views/SystemView/SystemCPUView.vala:26 +#: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" msgstr "Температура" @@ -278,19 +324,19 @@ msgstr "Температура" #. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); #. temperature_index++; #. }] -#: src/Views/SystemView/SystemCPUView.vala:88 +#: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" msgstr "℃" -#: src/Views/SystemView/SystemCPUView.vala:134 -#: src/Widgets/Statusbar/Statusbar.vala:71 +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" msgstr "ГГц" -#: src/Views/SystemView/SystemCPUView.vala:161 -msgid "Threads" -msgstr "Потоки" +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -342,37 +388,31 @@ msgstr "Адресні розміри: " #: src/Views/SystemView/SystemMemoryView.vala:5 #, fuzzy -#| msgid "Buffered: " msgid "Buffered" msgstr "Буферизовано: " #: src/Views/SystemView/SystemMemoryView.vala:6 #, fuzzy -#| msgid "Cached: " msgid "Cached" msgstr "Кешовано: " #: src/Views/SystemView/SystemMemoryView.vala:7 #, fuzzy -#| msgid "Locked: " msgid "Locked" msgstr "Заблоковано: " #: src/Views/SystemView/SystemMemoryView.vala:8 #, fuzzy -#| msgid "Total: " msgid "Total" msgstr "Загалом: " #: src/Views/SystemView/SystemMemoryView.vala:9 #, fuzzy -#| msgid "Used: " msgid "Used" msgstr "Використано: " #: src/Views/SystemView/SystemMemoryView.vala:10 #, fuzzy -#| msgid "Shared: " msgid "Shared" msgstr "Спільний: " @@ -424,32 +464,49 @@ msgstr "Пошук процесу" msgid "Type process name or PID to search" msgstr "Введіть назву процесу або PID для пошуку" -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Swap" -#: src/Widgets/Statusbar/Statusbar.vala:16 #: src/Widgets/Statusbar/Statusbar.vala:22 -#: src/Widgets/Statusbar/Statusbar.vala:29 +#, fuzzy +msgid "GPU" +msgstr "Процесор" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" msgstr "Обчислення…" -#: src/Widgets/Statusbar/Statusbar.vala:37 -msgid "Peace" -msgstr "Мир" +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:39 +#: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" msgstr "Погляньте на Github" -#: src/Widgets/Statusbar/Statusbar.vala:40 -msgid "Donate 💸" -msgstr "Пожертвуйте 💸" - #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "ВИКОРИСТАННЯ" +#~ msgid "Utilization" +#~ msgstr "Утилізація" + +#~ msgid "Show detailed info" +#~ msgstr "Показати подробиці" + +#~ msgid "Threads" +#~ msgstr "Потоки" + +#~ msgid "Peace" +#~ msgstr "Мир" + +#~ msgid "Donate 💸" +#~ msgstr "Пожертвуйте 💸" + #~ msgid "Deleted" #~ msgstr "Видалено" From 69e1fff5a42aeb5e06263915744094d104418014 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 7 Sep 2024 20:27:02 +0900 Subject: [PATCH 012/486] Update Japanese translation --- po/extra/ja.po | 6 ++-- po/ja.po | 85 ++++++++++++++++++-------------------------------- 2 files changed, 33 insertions(+), 58 deletions(-) diff --git a/po/extra/ja.po b/po/extra/ja.po index 94b0384c..cf59d1ee 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -1,14 +1,14 @@ # Japanese translations for extra package. # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER # This file is distributed under the same license as the extra package. -# Ryo Nakano , 2019, 2022. +# Ryo Nakano , 2019-2024. # msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-10-22 19:13+0900\n" -"PO-Revision-Date: 2022-10-22 20:29+0900\n" +"PO-Revision-Date: 2024-09-07 20:25+0900\n" "Last-Translator: Ryo Nakano \n" "Language-Team: none\n" "Language: ja\n" @@ -162,7 +162,7 @@ msgid "" "creating charts, it's amazing!" msgstr "" "最新バージョンの live-chart に更新 (Laurent Callarec) ← グラフを作るためのラ" -"イブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" +"イブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" #: data/com.github.stsdc.monitor.appdata.xml.in:128 msgid "Detailed process info in sidebar" diff --git a/po/ja.po b/po/ja.po index f5e5b37b..2344079c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,14 +1,14 @@ # Japanese translations for com.github.stsdc.monitor package. # Copyright (C) 2019 THE com.github.stsdc.monitor'S COPYRIGHT HOLDER # This file is distributed under the same license as the com.github.stsdc.monitor package. -# Ryo Nakano , 2019-2022. +# Ryo Nakano , 2019-2024. # msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2022-10-22 19:33+0900\n" +"PO-Revision-Date: 2024-09-07 20:23+0900\n" "Last-Translator: Ryo Nakano \n" "Language-Team: none\n" "Language: ja\n" @@ -31,7 +31,7 @@ msgstr "システム" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "コンテナ" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -75,7 +75,7 @@ msgstr "モニターを終了" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "この操作を実行してもよろしいですか?" +msgstr "この操作を実行してもよろしいですか?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" @@ -104,24 +104,23 @@ msgstr "スレッド数" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" -msgstr "ディスクの入出力待ち" +msgstr "割り込み不能なディスクの入出力待ち" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" -msgstr "アイドル中のカーネルスレッド" +msgstr "アイドル状態のカーネルスレッド" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" -msgstr "実行中、あるいは実行可能のプロセス" +msgstr "実行状態または実行可能状態のプロセス (実行キューに存在)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 -msgid "" -"The process is in an interruptible sleep; waiting for an event to complete" -msgstr "スリープ中、あるいはイベントの完了待ちのプロセス" +msgid "The process is in an interruptible sleep; waiting for an event to complete" +msgstr "割り込み不能な待ち状態 (イベント完了待ち) のプロセス" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" -msgstr "ジョブコントロールシグナルによって停止されたプロセス" +msgstr "ジョブ管理シグナルによって停止されたプロセス" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" @@ -145,7 +144,7 @@ msgstr "システムコール" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "読み出し/書き込み" +msgstr "読み込み/書き込み" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" @@ -169,11 +168,11 @@ msgstr "選択したプロセスを強制終了します" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "プロセスを強制終了してもよろしいですか?" +msgstr "プロセスを強制終了してもよろしいですか?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "プロセスを終了してもよろしいですか?" +msgstr "プロセスを終了してもよろしいですか?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -220,34 +219,32 @@ msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 -#, fuzzy msgid "Update every (requires restart):" -msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" +msgstr "更新間隔 (再起動が必要):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1 秒" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2 秒" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3 秒" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4 秒" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5 秒" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -#, fuzzy msgid "Show containers tab (requires restart):" -msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" +msgstr "コンテナタブを表示 (再起動が必要):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" @@ -263,14 +260,12 @@ msgid "Display CPU percentage" msgstr "CPU 使用率を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -#, fuzzy msgid "Display CPU frequency" -msgstr "CPU 使用率を表示" +msgstr "CPU 周波数を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 -#, fuzzy msgid "Display CPU temperature" -msgstr "温度を表示" +msgstr "CPU 温度を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" @@ -285,19 +280,16 @@ msgid "Display network download" msgstr "ネットワーク受信量を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 -#, fuzzy msgid "Display GPU percentage" -msgstr "CPU 使用率を表示" +msgstr "GPU 使用率を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 -#, fuzzy msgid "Display VRAM percentage" -msgstr "RAM 使用率を表示" +msgstr "VRAM 使用率を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 -#, fuzzy msgid "Display GPU temperature" -msgstr "温度を表示" +msgstr "GPU 温度を表示" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" @@ -332,9 +324,8 @@ msgid "GHz" msgstr "GHz" #: src/Views/SystemView/SystemCPUView.vala:153 -#, fuzzy msgid "THREADS" -msgstr "読み込み" +msgstr "スレッド" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -386,11 +377,11 @@ msgstr "アドレスサイズ: " #: src/Views/SystemView/SystemMemoryView.vala:5 msgid "Buffered" -msgstr "バッファ済み" +msgstr "バッファ" #: src/Views/SystemView/SystemMemoryView.vala:6 msgid "Cached" -msgstr "キャッシュ済み" +msgstr "キャッシュ" #: src/Views/SystemView/SystemMemoryView.vala:7 msgid "Locked" @@ -461,9 +452,8 @@ msgid "Swap" msgstr "スワップ" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "CPU" +msgstr "GPU" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 @@ -474,7 +464,7 @@ msgstr "計算しています…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" @@ -483,18 +473,3 @@ msgstr "GitHub で確認" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "使用率" - -#~ msgid "Utilization" -#~ msgstr "使用率" - -#~ msgid "Show detailed info" -#~ msgstr "詳細情報を表示します" - -#~ msgid "Threads" -#~ msgstr "スレッド" - -#~ msgid "Peace" -#~ msgstr "平和の象徴" - -#~ msgid "Donate 💸" -#~ msgstr "寄付 💸" From 047f60cce8d4bb032bc2df7384bf47e85d88c0b4 Mon Sep 17 00:00:00 2001 From: lenemter Date: Sat, 7 Sep 2024 14:57:21 +0300 Subject: [PATCH 013/486] Update Russian translation --- po/ru.po | 135 +++++++++++-------------------------------------------- 1 file changed, 26 insertions(+), 109 deletions(-) diff --git a/po/ru.po b/po/ru.po index f506a53f..fbc2f665 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: \n" -"Last-Translator: Andrey Kultyapov \n" -"Language-Team: \n" +"PO-Revision-Date: 2024-09-07 14:43+0300\n" +"Last-Translator: Leo \n" +"Language-Team: none\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Система" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Контейнеры" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -152,7 +152,7 @@ msgstr "Завершить процесс" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" -msgstr "Завершает выбранные процессы" +msgstr "Завершить выбранный процесс" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" @@ -160,7 +160,7 @@ msgstr "Убить процесс" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" -msgstr "Убивает выбранные процессы" +msgstr "Убить выбранный процесс" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" @@ -208,45 +208,43 @@ msgstr "Общие" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" -msgstr "Запустить в фоновом режиме:" +msgstr "Запускать в фоновом режиме:" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" +msgstr "Плавные линии для графика ЦП (требуется перезапуск):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 -#, fuzzy msgid "Update every (requires restart):" -msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" +msgstr "Обновлять каждые (требуется перезапуск):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -#, fuzzy msgid "Show containers tab (requires restart):" -msgstr "Включить плавные линии для графика ЦП (требуется перезапуск):" +msgstr "Показывать вкладку контейнеров (требуется перезапуск):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" -msgstr "Показывать индикаторы в Wingpanel" +msgstr "Показывать индикатор в панели" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 @@ -258,12 +256,10 @@ msgid "Display CPU percentage" msgstr "Использование процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -#, fuzzy msgid "Display CPU frequency" -msgstr "Использование процессора" +msgstr "Частота процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 -#, fuzzy msgid "Display CPU temperature" msgstr "Температура процессора" @@ -280,27 +276,24 @@ msgid "Display network download" msgstr "Скорость загрузки сети" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 -#, fuzzy msgid "Display GPU percentage" -msgstr "Использование процессора" +msgstr "Использование ГПУ" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 -#, fuzzy msgid "Display VRAM percentage" -msgstr "Использование памяти" +msgstr "Использование VRAM памяти" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 -#, fuzzy msgid "Display GPU temperature" -msgstr "Температура процессора" +msgstr "Температура ГПУ" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "Включен" +msgstr "Включён" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "Отключен" +msgstr "Отключён" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" @@ -332,7 +325,7 @@ msgstr "ПОТОКИ" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "Характеристики" +msgstr "Возможности" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" @@ -448,16 +441,15 @@ msgstr "Найти процесс" #: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" -msgstr "Для поиска введите имя или ИД процесса" +msgstr "Для поиска введите имя или PID процесса" #: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" msgstr "Подкачка" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "ЦПУ" +msgstr "ГПУ" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 @@ -468,7 +460,7 @@ msgstr "Вычисление…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" @@ -477,78 +469,3 @@ msgstr "Проект на Github" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "ИСПОЛЬЗОВАНИЕ" - -#~ msgid "Utilization" -#~ msgstr "Использование" - -#~ msgid "Show detailed info" -#~ msgstr "Показать подробную информацию" - -#~ msgid "Threads" -#~ msgstr "Потоки" - -#~ msgid "Peace" -#~ msgstr "Мир" - -#~ msgid "Donate 💸" -#~ msgstr "Пожертвовать 💸" - -#~ msgid "Deleted" -#~ msgstr "Удалено" - -#~ msgid "Display Memory percentage" -#~ msgstr "Использование памяти" - -#~ msgid "FREQUENCY" -#~ msgstr "ЧАСТОТА" - -#~ msgid "Total: %s" -#~ msgstr "Всего: %s" - -#~ msgid "Used: %s" -#~ msgstr "Использовано: %s" - -#~ msgid "Shared: %s" -#~ msgstr "Общий: %s" - -#~ msgid "Buffered: %s" -#~ msgstr "Буферизовано: %s" - -#~ msgid "Cached: %s" -#~ msgstr "Кешировано: %s" - -#~ msgid "Locked: %s" -#~ msgstr "Заблокировано: %s" - -#~ msgid "Flags" -#~ msgstr "Флаги" - -#~ msgid "Show an indicator:" -#~ msgstr "Показывать индикатор:" - -#~ msgid "Items in indicator:" -#~ msgstr "Элементы в индикаторе:" - -#~ msgid "Network up" -#~ msgstr "Отправка" - -#~ msgid "Hide detailed info" -#~ msgstr "Скрыть подробную информацию" - -#~ msgid "%d%%" -#~ msgstr "%d%%" - -#~ msgid "Show system resources" -#~ msgstr "Показывать системные ресурсы" - -#~ msgid "Background Applications" -#~ msgstr "Фоновые приложения" - -#~ msgid "Ctrl+E" -#~ msgstr "Ctrl+E" - -#~ msgid "CPU:" -#~ msgstr "ЦПУ:" - -#~ msgid "Memory:" -#~ msgstr "Память:" From 85941b3a8293c0138c8865407877fbd7b4f34cfa Mon Sep 17 00:00:00 2001 From: RedNeath Date: Sat, 7 Sep 2024 18:29:37 +0200 Subject: [PATCH 014/486] [TRANS] Updated french translations --- po/fr.po | 135 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 68 insertions(+), 67 deletions(-) diff --git a/po/fr.po b/po/fr.po index 071efd54..61933da3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,15 +1,16 @@ # French translations for com.github.stsdc.monitor package. -# Copyright (C) 2019 THE com.github.stsdc.monitor'S COPYRIGHT HOLDER +# Copyright (C) 2019-2024 THE com.github.stsdc.monitor'S COPYRIGHT HOLDER # This file is distributed under the same license as the com.github.stsdc.monitor package. # Nathan Bonnemains, 2019. +# Théandre Bourry, 2024. # msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2019-11-03 14:15+0200\n" -"Last-Translator: Nathan Bonnemains\n" +"PO-Revision-Date: 2024-09-07 18:25+0200\n" +"Last-Translator: Théandre Bourry\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -24,15 +25,15 @@ msgstr "Monitor" #: src/MainWindow.vala:39 #, fuzzy msgid "Processes" -msgstr "Nom du processus" +msgstr "Processus" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Système" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Conteneurs" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -48,7 +49,7 @@ msgstr "" #: src/Utils.vala:76 msgid "B" -msgstr "" +msgstr "o" #: src/Utils.vala:81 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 @@ -76,15 +77,15 @@ msgstr "Quitter Monitor" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir faire ça ?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" -msgstr "" +msgstr "Oui" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" -msgstr "" +msgstr "Non" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 @@ -98,7 +99,7 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 #, fuzzy msgid "PRI" -msgstr "PID" +msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" @@ -106,52 +107,52 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" -msgstr "" +msgstr "Le process est en attente d'une opération de disque qui ne peut être interrompue" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" -msgstr "" +msgstr "Thread noyau inactif" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" -msgstr "" +msgstr "Le process est en cours d'exécution ou peut être exécuté (dans la file d'attente d'exécution)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" -msgstr "" +msgstr "Le process est en veille ; en attente d'un signal" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" -msgstr "" +msgstr "Le process est arrêté par un signal de contrôle de tâche" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" -msgstr "" +msgstr "Le process est arrêté par un débogueur" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" -msgstr "" +msgstr "Le process s'est terminé mais n'a pas été achevé par son parent" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 msgid "Opened files" -msgstr "" +msgstr "Fichiers ouverts" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 msgid "Characters" -msgstr "" +msgstr "Caractères" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 msgid "System calls" -msgstr "" +msgstr "Appels système" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "" +msgstr "Lecture/Écriture" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" -msgstr "" +msgstr "Écriture annulée" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" @@ -171,11 +172,11 @@ msgstr "Tuer le processus sélectionné" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "" +msgstr "Voulez-vous vraiment tuer le processus ?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "" +msgstr "Voulez-vous vraiment terminer le processus ?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -211,7 +212,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" -msgstr "" +msgstr "Général" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" @@ -219,11 +220,11 @@ msgstr "Démarrer en arrière-plan :" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "" +msgstr "Adoucir les lignes du graphique CPU (nécessite de redémarrer l'application)" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 msgid "Update every (requires restart):" -msgstr "" +msgstr "Fréquence de rafraîchissement (nécessite de redémarrer l'application)" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" @@ -247,7 +248,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 msgid "Show containers tab (requires restart):" -msgstr "" +msgstr "Afficher l'onglet des conteneurs (nécessite de redémarrer l'application)" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy @@ -262,55 +263,55 @@ msgstr "Indicateur du panneau" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 msgid "Display CPU percentage" -msgstr "" +msgstr "Afficher le pourcentage d'utilisation du CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 msgid "Display CPU frequency" -msgstr "" +msgstr "Afficher la fréquence du CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 msgid "Display CPU temperature" -msgstr "" +msgstr "Afficher la température du CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" -msgstr "" +msgstr "Afficher le pourcentage de remplissage de la RAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "Afficher la vitesse d'envoi du réseau" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "Afficher la vitesse de téléchargement du réseau" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "" +msgstr "Afficher le pourcentage d'utilisation du GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "" +msgstr "Afficher le pourcentage de remplissage de la VRAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "" +msgstr "Afficher la température du GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "" +msgstr "Activé" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Désactivé" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" -msgstr "" +msgstr "Fréquence" #: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" -msgstr "" +msgstr "Température" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -334,7 +335,7 @@ msgstr "" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "Fonctionnalités" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" @@ -342,55 +343,55 @@ msgstr "" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" -msgstr "" +msgstr "Modèle :" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "Famille :" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" -msgstr "" +msgstr "Version de microprogramme :" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" -msgstr "" +msgstr "Bogomips :" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " -msgstr "" +msgstr "Cache d'instruction L1 : " #: src/Views/SystemView/SystemCPUInfoPopover.vala:62 msgid "L1 Data cache: " -msgstr "" +msgstr "Cache de données L1 : " #: src/Views/SystemView/SystemCPUInfoPopover.vala:66 msgid "L1 cache: " -msgstr "" +msgstr "Cache L1 : " #: src/Views/SystemView/SystemCPUInfoPopover.vala:69 msgid "L2 Cache size: " -msgstr "" +msgstr "Taille de cache L2 : " #: src/Views/SystemView/SystemCPUInfoPopover.vala:72 msgid "L3 Cache size: " -msgstr "" +msgstr "Taille de cache L3 : " #: src/Views/SystemView/SystemCPUInfoPopover.vala:75 msgid "Address sizes: " -msgstr "" +msgstr "Longueur des adresses : " #: src/Views/SystemView/SystemMemoryView.vala:5 msgid "Buffered" -msgstr "" +msgstr "Tampon" #: src/Views/SystemView/SystemMemoryView.vala:6 msgid "Cached" -msgstr "" +msgstr "En cache" #: src/Views/SystemView/SystemMemoryView.vala:7 msgid "Locked" -msgstr "" +msgstr "Verrouillé" #: src/Views/SystemView/SystemMemoryView.vala:8 msgid "Total" @@ -398,39 +399,39 @@ msgstr "" #: src/Views/SystemView/SystemMemoryView.vala:9 msgid "Used" -msgstr "" +msgstr "Rempli" #: src/Views/SystemView/SystemMemoryView.vala:10 msgid "Shared" -msgstr "" +msgstr "Partagé" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" -msgstr "" +msgstr "Réseau" #: src/Views/SystemView/SystemNetworkView.vala:20 msgid "DOWN" -msgstr "" +msgstr "DESCENDANT" #: src/Views/SystemView/SystemNetworkView.vala:24 msgid "UP" -msgstr "" +msgstr "MONTANT" #: src/Views/SystemView/SystemStorageView.vala:20 msgid "Storage" -msgstr "" +msgstr "Stockage" #: src/Views/SystemView/SystemStorageView.vala:22 msgid "WRITE" -msgstr "" +msgstr "ÉCRITURE" #: src/Views/SystemView/SystemStorageView.vala:26 msgid "READ" -msgstr "" +msgstr "LECTURE" #: src/Views/SystemView/SystemStorageView.vala:92 msgid "Not mounted" -msgstr "" +msgstr "Non-monté" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" @@ -438,7 +439,7 @@ msgstr "" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" -msgstr "" +msgstr "TEMPÉRATURE" #: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" @@ -478,7 +479,7 @@ msgstr "" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" -msgstr "" +msgstr "UTILISATION" #~ msgid "Show system resources" #~ msgstr "Afficher les ressources du système" From 83310374e6e3232e5220cfe4fbe4e0fa1772214b Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:13:10 +0200 Subject: [PATCH 015/486] bump version to 0.17.2 --- com.github.stsdc.monitor.spec | 2 +- debian/changelog | 10 ++++++++++ meson.build | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/com.github.stsdc.monitor.spec b/com.github.stsdc.monitor.spec index 8cc876ec..70c1ea92 100755 --- a/com.github.stsdc.monitor.spec +++ b/com.github.stsdc.monitor.spec @@ -2,7 +2,7 @@ %global appname com.github.stsdc.monitor Name: com.github.stsdc.monitor -Version: 0.17.1 +Version: 0.17.2 Release: %autorelease Summary: Manage processes and monitor system resources License: GPLv3 diff --git a/debian/changelog b/debian/changelog index 120d72fa..e5b3e26a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +com.github.stsdc.monitor (0.17.2) jammy; urgency=low + + * Add CPU frequency and VRAM to the indicator + * Fix: If card0 is not available try card1 + * Update Japanese translation + * Update French translation + * Update Russian translation + + -- Stanisław Dac Mon, 09 Sep 2024 16:06:06 +0000 + com.github.stsdc.monitor (0.17.1) jammy; urgency=low * Fix VRAM percentage diff --git a/meson.build b/meson.build index 453cb745..8dfcf370 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('com.github.stsdc.monitor', 'vala', 'c', version: '0.17.1') +project('com.github.stsdc.monitor', 'vala', 'c', version: '0.17.2') # these are Meson modules gnome = import('gnome') From 71a6bbea2ae639c2c513bce750871c27f884418f Mon Sep 17 00:00:00 2001 From: Weblate Date: Tue, 8 Oct 2024 17:18:02 +0000 Subject: [PATCH 016/486] Update translation files Updated by "Update LINGUAS file" add-on in Weblate. Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ --- po/LINGUAS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/LINGUAS b/po/LINGUAS index 7fa9c498..cadc3834 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1 +1 @@ -de es fr it ja lt nl pl pt ru tr uk ro +de es fr it ja lt nl pl pt ro ru tr uk From 7a6f5266d8bb0d0d52225637c043c7b47650245b Mon Sep 17 00:00:00 2001 From: Weblate Date: Tue, 8 Oct 2024 17:18:16 +0000 Subject: [PATCH 017/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ --- po/fr.po | 15 ++++++++++----- po/ja.po | 3 ++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/po/fr.po b/po/fr.po index 61933da3..aebf66ad 100644 --- a/po/fr.po +++ b/po/fr.po @@ -97,7 +97,6 @@ msgid "NI" msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 -#, fuzzy msgid "PRI" msgstr "" @@ -107,7 +106,9 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" -msgstr "Le process est en attente d'une opération de disque qui ne peut être interrompue" +msgstr "" +"Le process est en attente d'une opération de disque qui ne peut être " +"interrompue" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" @@ -115,7 +116,9 @@ msgstr "Thread noyau inactif" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" -msgstr "Le process est en cours d'exécution ou peut être exécuté (dans la file d'attente d'exécution)" +msgstr "" +"Le process est en cours d'exécution ou peut être exécuté (dans la file " +"d'attente d'exécution)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" @@ -220,7 +223,8 @@ msgstr "Démarrer en arrière-plan :" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "Adoucir les lignes du graphique CPU (nécessite de redémarrer l'application)" +msgstr "" +"Adoucir les lignes du graphique CPU (nécessite de redémarrer l'application)" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 msgid "Update every (requires restart):" @@ -248,7 +252,8 @@ msgstr "" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 msgid "Show containers tab (requires restart):" -msgstr "Afficher l'onglet des conteneurs (nécessite de redémarrer l'application)" +msgstr "" +"Afficher l'onglet des conteneurs (nécessite de redémarrer l'application)" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy diff --git a/po/ja.po b/po/ja.po index 2344079c..5c0ffa71 100644 --- a/po/ja.po +++ b/po/ja.po @@ -115,7 +115,8 @@ msgid "The process is running or runnable (on run queue)" msgstr "実行状態または実行可能状態のプロセス (実行キューに存在)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 -msgid "The process is in an interruptible sleep; waiting for an event to complete" +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" msgstr "割り込み不能な待ち状態 (イベント完了待ち) のプロセス" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 From a3f03b533989cc96f78a92d4a51aa56b0564b6da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 8 Oct 2024 10:19:20 -0700 Subject: [PATCH 018/486] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 32d3ab76..ce2a865d 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@

+[![Translation status](https://l10n.elementary.io/widget/desktop/monitor/svg-badge.svg)](https://l10n.elementary.io/engage/desktop/) + ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-processes.png) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-system.png) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-containers.png) From d12e22d83bf6a3d6a03386d5a329389e8120033d Mon Sep 17 00:00:00 2001 From: Weblate Date: Tue, 8 Oct 2024 17:21:27 +0000 Subject: [PATCH 019/486] Update translation files Updated by "Update LINGUAS file" add-on in Weblate. Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ --- po/extra/LINGUAS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS index 0bf70ee9..81823c3b 100644 --- a/po/extra/LINGUAS +++ b/po/extra/LINGUAS @@ -1 +1 @@ -de es fr ja lt nl pl pt ru uk ro +de es fr ja lt nl pl pt ro ru uk From 6cf623885f75bb595c200f7861afbe91573f3a57 Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:18:18 +0000 Subject: [PATCH 020/486] Translated using Weblate (German) Currently translated at 20.0% (21 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/de/ --- po/de.po | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 1b11247a..902d9c5c 100644 --- a/po/de.po +++ b/po/de.po @@ -2,8 +2,16 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: German \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" +"Content-Transfer-Encoding: 8bit\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -16,7 +24,7 @@ msgstr "Prozess Name" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -290,7 +298,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Deaktiviert" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 4a3d567f89f4c7a8a72fc7bc3d9fbe7130bd5463 Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:18:18 +0000 Subject: [PATCH 021/486] Translated using Weblate (Spanish) Currently translated at 20.0% (21 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/es/ --- po/es.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/es.po b/po/es.po index 2a7b96a8..7837c80e 100644 --- a/po/es.po +++ b/po/es.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2019-06-03 23:25+0100\n" -"Last-Translator: Mario Rodrigo\n" -"Language-Team: \n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -30,7 +31,7 @@ msgstr "Nombre del proceso" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" @@ -304,7 +305,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Desactivado" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 04a2077b74ad0b68076cff803d67432256771e88 Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:18:19 +0000 Subject: [PATCH 022/486] Translated using Weblate (Italian) Currently translated at 13.3% (14 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/it/ --- po/it.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/it.po b/po/it.po index a45a27cb..b1fc933d 100644 --- a/po/it.po +++ b/po/it.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2019-03-31 10:59+0200\n" -"Last-Translator: Raí B. Toffoletto \n" -"Language-Team: \n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -30,7 +31,7 @@ msgstr "Nome del processo" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" @@ -306,7 +307,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Disabilitato" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From d8191d30b113dcd9ff0c12c9d837057d6e75f394 Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:18:18 +0000 Subject: [PATCH 023/486] Translated using Weblate (Polish) Currently translated at 36.1% (38 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/pl/ --- po/pl.po | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/po/pl.po b/po/pl.po index 7737302b..de31b659 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,11 +3,17 @@ msgstr "" "Project-Id-Version: Monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: POEditor.com\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -292,7 +298,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Wyłączone" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 1b06845541b28e0865e8b5e0e62167510c322fca Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:21:16 +0000 Subject: [PATCH 024/486] Translated using Weblate (Lithuanian) Currently translated at 50.0% (4 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/lt/ --- po/extra/lt.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/po/extra/lt.po b/po/extra/lt.po index 9f409d11..5c7d8935 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -8,20 +8,23 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: 2018-10-20 22:25+0900\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 5e4446ad875d06d334ed2fa970870957d5cd92ff Mon Sep 17 00:00:00 2001 From: anonymous Date: Tue, 8 Oct 2024 17:21:15 +0000 Subject: [PATCH 025/486] Translated using Weblate (Polish) Currently translated at 12.5% (1 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/pl/ --- po/extra/pl.po | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/po/extra/pl.po b/po/extra/pl.po index a264a818..8ef19baa 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -8,20 +8,22 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: 2018-10-20 22:25+0900\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-08 17:21+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From eb562a645a13325957e8e56ad774a25522d802ca Mon Sep 17 00:00:00 2001 From: Weblate Date: Tue, 8 Oct 2024 17:21:34 +0000 Subject: [PATCH 026/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ --- po/extra/de.po | 7 +- po/extra/es.po | 3 +- po/extra/fr.po | 7 +- po/extra/ja.po | 388 +++++++++++++++++++++---------------------------- po/extra/pl.po | 4 +- po/extra/pt.po | 3 +- po/extra/ro.po | 15 +- po/extra/ru.po | 4 +- po/extra/uk.po | 4 +- 9 files changed, 195 insertions(+), 240 deletions(-) diff --git a/po/extra/de.po b/po/extra/de.po index c0f4d480..67672d2e 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -28,7 +28,9 @@ msgstr "Prozessverwaltung und Überwachung der Systemressourcen" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Lassen Sie sich die Auslastung der Systemressourcen anzeigen, filtern und verwalten Sie Prozesse." +msgstr "" +"Lassen Sie sich die Auslastung der Systemressourcen anzeigen, filtern und " +"verwalten Sie Prozesse." #: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" @@ -40,7 +42,8 @@ msgstr "System Monitor" #: data/com.github.stsdc.monitor.desktop.in:6 msgid "Manage processes and monitor resource usage of the system" -msgstr "Verwalten von Prozessen und Überwachen der Ressourcenauslastung des Systems" +msgstr "" +"Verwalten von Prozessen und Überwachen der Ressourcenauslastung des Systems" #: data/com.github.stsdc.monitor.desktop.in:10 msgid "com.github.stsdc.monitor" diff --git a/po/extra/es.po b/po/extra/es.po index 427f9b36..bea08455 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -28,7 +28,8 @@ msgstr "Gestionar procesos y monitorizar los recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Mostrar el uso de los recursos del sistema, filtrar y gestionar procesos." +msgstr "" +"Mostrar el uso de los recursos del sistema, filtrar y gestionar procesos." #: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" diff --git a/po/extra/fr.po b/po/extra/fr.po index 194bb786..6153475e 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -28,7 +28,9 @@ msgstr "Gérez les processus et surveillez les ressources du système" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Visualisez l'utilisation des ressources du système, filtrez et gérez les processus." +msgstr "" +"Visualisez l'utilisation des ressources du système, filtrez et gérez les " +"processus." #: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" @@ -40,7 +42,8 @@ msgstr "Moniteur système" #: data/com.github.stsdc.monitor.desktop.in:6 msgid "Manage processes and monitor resource usage of the system" -msgstr "Gérez les processus et surveillez l'utilisation des ressources du système" +msgstr "" +"Gérez les processus et surveillez l'utilisation des ressources du système" #: data/com.github.stsdc.monitor.desktop.in:10 msgid "com.github.stsdc.monitor" diff --git a/po/extra/ja.po b/po/extra/ja.po index cf59d1ee..0b22ba28 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-22 19:13+0900\n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" "PO-Revision-Date: 2024-09-07 20:25+0900\n" "Last-Translator: Ryo Nakano \n" "Language-Team: none\n" @@ -30,294 +30,236 @@ msgstr "プロセスを管理し、システムリソースを監視します" msgid "Display usage of system resources, filter and manage processes." msgstr "システムリソースの消費量を表示し、プロセスをフィルターし管理します。" -#: data/com.github.stsdc.monitor.appdata.xml.in:25 +#: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" msgstr "Stanisław Dac" -#: data/com.github.stsdc.monitor.appdata.xml.in:33 -msgid "Add info about drives (based on Dirli's code)" -msgstr "ドライバーに関する情報を表示 (Dirli のコードがベース)" +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "システムモニター" -#: data/com.github.stsdc.monitor.appdata.xml.in:38 -msgid "Adds dark theme 🌚" -msgstr "ダークテーマを追加 🌚" +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "プロセスを管理し、システムリソースの消費量を監視します" -#: data/com.github.stsdc.monitor.appdata.xml.in:43 -msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" msgstr "" -"Wingpanel 3にバージョンアップしました。また、Kristopher Ives が *.deb パッ" -"ケージのメンテナーになりました" -#: data/com.github.stsdc.monitor.appdata.xml.in:48 -msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" msgstr "" -"🐛 インジケーターに何も表示されない不具合を修正しました。インストール後に再起" -"動してください ⚡️" +"System monitor;System usage;Task manager;システムモニター;システム消費量;タス" +"クマネージャー;" -#: data/com.github.stsdc.monitor.appdata.xml.in:54 -msgid "🐛 Try to fix frequent GUI hangs 🥶" -msgstr "🐛 GUI が頻繁に固まる不具合を修正する試みを行いました 🥶" +#~ msgid "Add info about drives (based on Dirli's code)" +#~ msgstr "ドライバーに関する情報を表示 (Dirli のコードがベース)" -#: data/com.github.stsdc.monitor.appdata.xml.in:55 -msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "🇳🇱 オランダ語翻訳を更新 (@Vistaus)" +#~ msgid "Adds dark theme 🌚" +#~ msgstr "ダークテーマを追加 🌚" -#: data/com.github.stsdc.monitor.appdata.xml.in:56 -msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "🇵🇹 ポルトガル語翻訳を更新 (@hugok79)" +#~ msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +#~ msgstr "" +#~ "Wingpanel 3にバージョンアップしました。また、Kristopher Ives が *.deb パッ" +#~ "ケージのメンテナーになりました" -#: data/com.github.stsdc.monitor.appdata.xml.in:57 -msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "🇷🇴 ルーマニア語翻訳を更新 (@tiberiufrat)" +#~ msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +#~ msgstr "" +#~ "🐛 インジケーターに何も表示されない不具合を修正しました。インストール後に" +#~ "再起動してください ⚡️" -#: data/com.github.stsdc.monitor.appdata.xml.in:64 -msgid "Display Storage usage" -msgstr "ストレージの使用状況を表示" +#~ msgid "🐛 Try to fix frequent GUI hangs 🥶" +#~ msgstr "🐛 GUI が頻繁に固まる不具合を修正する試みを行いました 🥶" -#: data/com.github.stsdc.monitor.appdata.xml.in:65 -msgid "Update Russian translation (@camellan)" -msgstr "ロシア語翻訳を更新 (@camellan)" +#~ msgid "🇳🇱 Update Dutch translation (@Vistaus)" +#~ msgstr "🇳🇱 オランダ語翻訳を更新 (@Vistaus)" -#: data/com.github.stsdc.monitor.appdata.xml.in:66 -msgid "Update Portuguese translation (@hugok79)" -msgstr "ポルトガル語翻訳を更新 (@hugok79)" +#~ msgid "🇵🇹 Update Portuguese translation (@hugok79)" +#~ msgstr "🇵🇹 ポルトガル語翻訳を更新 (@hugok79)" -#: data/com.github.stsdc.monitor.appdata.xml.in:67 -msgid "Different colours for Upload and Download" -msgstr "送信と受信を異なる色で表示するように修正" +#~ msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +#~ msgstr "🇷🇴 ルーマニア語翻訳を更新 (@tiberiufrat)" -#: data/com.github.stsdc.monitor.appdata.xml.in:74 -#: data/com.github.stsdc.monitor.appdata.xml.in:86 -msgid "Update Portuguese translation (@rottenpants466)" -msgstr "ポルトガル語翻訳を更新 (@rottenpants466)" +#~ msgid "Display Storage usage" +#~ msgstr "ストレージの使用状況を表示" -#: data/com.github.stsdc.monitor.appdata.xml.in:75 -msgid "Update Dutch translation (@Vistaus)" -msgstr "オランダ語翻訳を更新 (@Vistaus)" +#~ msgid "Update Russian translation (@camellan)" +#~ msgstr "ロシア語翻訳を更新 (@camellan)" -#: data/com.github.stsdc.monitor.appdata.xml.in:76 -msgid "Smoother animations (@DevAlien)" -msgstr "描画がなめらかになるように修正 (@DevAlien)" +#~ msgid "Update Portuguese translation (@hugok79)" +#~ msgstr "ポルトガル語翻訳を更新 (@hugok79)" -#: data/com.github.stsdc.monitor.appdata.xml.in:77 -msgid "Preselect first entry so that the info panel is always open (@DevAlien)" -msgstr "" -"情報パネルが常に表示されるように、プロセス一覧の先頭要素を自動で選択するよう" -"に修正 (@DevAlien)" +#~ msgid "Different colours for Upload and Download" +#~ msgstr "送信と受信を異なる色で表示するように修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:78 -msgid "Show CPU temperature in the Indicator" -msgstr "CPU 温度をインジケーターに表示するように修正" +#~ msgid "Update Portuguese translation (@rottenpants466)" +#~ msgstr "ポルトガル語翻訳を更新 (@rottenpants466)" -#: data/com.github.stsdc.monitor.appdata.xml.in:85 -msgid "Better System Tab" -msgstr "“システム”タブを改善" +#~ msgid "Update Dutch translation (@Vistaus)" +#~ msgstr "オランダ語翻訳を更新 (@Vistaus)" -#: data/com.github.stsdc.monitor.appdata.xml.in:87 -msgid "Save last opened view (@ryonakano)" -msgstr "最後に開いたタブを復元するように修正 (@ryonakano)" +#~ msgid "Smoother animations (@DevAlien)" +#~ msgstr "描画がなめらかになるように修正 (@DevAlien)" -#: data/com.github.stsdc.monitor.appdata.xml.in:94 -#: data/com.github.stsdc.monitor.appdata.xml.in:157 -msgid "Update Japanese translation (Ryo Nakano)" -msgstr "日本語翻訳を更新 (Ryo Nakano)" +#~ msgid "" +#~ "Preselect first entry so that the info panel is always open (@DevAlien)" +#~ msgstr "" +#~ "情報パネルが常に表示されるように、プロセス一覧の先頭要素を自動で選択するよ" +#~ "うに修正 (@DevAlien)" -#: data/com.github.stsdc.monitor.appdata.xml.in:95 -msgid "Disable search entry, when System tab is active" -msgstr "“システム”タブを表示している場合は検索欄を無効化するように修正" +#~ msgid "Show CPU temperature in the Indicator" +#~ msgstr "CPU 温度をインジケーターに表示するように修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:96 -msgid "Add screenshots" -msgstr "スクリーンショットを追加" +#~ msgid "Better System Tab" +#~ msgstr "“システム”タブを改善" -#: data/com.github.stsdc.monitor.appdata.xml.in:103 -msgid "Add System resources tab" -msgstr "システムリソースを表示するタブを追加" +#~ msgid "Save last opened view (@ryonakano)" +#~ msgstr "最後に開いたタブを復元するように修正 (@ryonakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:110 -msgid "Added tooltips to process state label (Ryo Nakano)" -msgstr "プロセスの状態を示すラベルにツールチップを追加 (Ryo Nakano)" +#~ msgid "Update Japanese translation (Ryo Nakano)" +#~ msgstr "日本語翻訳を更新 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:111 -msgid "Small bugfix" -msgstr "軽微なバグ修正" +#~ msgid "Disable search entry, when System tab is active" +#~ msgstr "“システム”タブを表示している場合は検索欄を無効化するように修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:118 -msgid "Fix sorting arrows" -msgstr "並べ替えを示す矢印アイコンを修正" +#~ msgid "Add screenshots" +#~ msgstr "スクリーンショットを追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:119 -#: data/com.github.stsdc.monitor.appdata.xml.in:155 -#: data/com.github.stsdc.monitor.appdata.xml.in:169 -msgid "Update Russian translation (camellan)" -msgstr "ロシア語翻訳を更新 (camellan)" +#~ msgid "Add System resources tab" +#~ msgstr "システムリソースを表示するタブを追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:120 -msgid "Add Turkish translation (Harun Yasar)" -msgstr "トルコ語翻訳を追加 (Harun Yasar)" +#~ msgid "Added tooltips to process state label (Ryo Nakano)" +#~ msgstr "プロセスの状態を示すラベルにツールチップを追加 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:121 -msgid "" -"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " -"creating charts, it's amazing!" -msgstr "" -"最新バージョンの live-chart に更新 (Laurent Callarec) ← グラフを作るためのラ" -"イブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" +#~ msgid "Small bugfix" +#~ msgstr "軽微なバグ修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:128 -msgid "Detailed process info in sidebar" -msgstr "サイドバーにプロセスの詳細情報を表示する機能を追加" +#~ msgid "Fix sorting arrows" +#~ msgstr "並べ替えを示す矢印アイコンを修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:129 -msgid "CPU frequency in tooltip (Ryo Nakano)" -msgstr "ツールチップに CPU 使用率を表示するように修正 (Ryo Nakano)" +#~ msgid "Update Russian translation (camellan)" +#~ msgstr "ロシア語翻訳を更新 (camellan)" -#: data/com.github.stsdc.monitor.appdata.xml.in:136 -msgid "Bugfix (potential) of crushes and high CPU usage" -msgstr "クラッシュや CPU 使用率を占有してしまう不具合を部分的に修正" +#~ msgid "Add Turkish translation (Harun Yasar)" +#~ msgstr "トルコ語翻訳を追加 (Harun Yasar)" -#: data/com.github.stsdc.monitor.appdata.xml.in:137 -msgid "Update German translation (Carsten Dietrich)" -msgstr "ドイツ語翻訳を更新 (Carsten Dietrich)" +#~ msgid "" +#~ "Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +#~ "creating charts, it's amazing!" +#~ msgstr "" +#~ "最新バージョンの live-chart に更新 (Laurent Callarec) ← グラフを作るための" +#~ "ライブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" -#: data/com.github.stsdc.monitor.appdata.xml.in:144 -msgid "Update Portuguese translation (Hugo Carvalho)" -msgstr "ポルトガル語翻訳を更新 (Hugo Carvalho)" +#~ msgid "Detailed process info in sidebar" +#~ msgstr "サイドバーにプロセスの詳細情報を表示する機能を追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:145 -msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "フランス語翻訳を更新 (Nathan Bonnemains と Skeudwenn)" +#~ msgid "CPU frequency in tooltip (Ryo Nakano)" +#~ msgstr "ツールチップに CPU 使用率を表示するように修正 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:146 -msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" -msgstr "スワップが使用できない場合は使用率を表示しないように修正 (Ryo Nakano)" +#~ msgid "Bugfix (potential) of crushes and high CPU usage" +#~ msgstr "クラッシュや CPU 使用率を占有してしまう不具合を部分的に修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:153 -msgid "Update Italian translation (Mirko Brombin)" -msgstr "イタリア語翻訳を更新 (Mirko Brombin)" +#~ msgid "Update German translation (Carsten Dietrich)" +#~ msgstr "ドイツ語翻訳を更新 (Carsten Dietrich)" -#: data/com.github.stsdc.monitor.appdata.xml.in:154 -msgid "Show swap usage (Ryo Nakano)" -msgstr "スワップ使用率を表示する機能を追加 (Ryo Nakano)" +#~ msgid "Update Portuguese translation (Hugo Carvalho)" +#~ msgstr "ポルトガル語翻訳を更新 (Hugo Carvalho)" -#: data/com.github.stsdc.monitor.appdata.xml.in:156 -msgid "Code refactoring (Ryo Nakano)" -msgstr "コードをリファクタリング (Ryo Nakano)" +#~ msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +#~ msgstr "フランス語翻訳を更新 (Nathan Bonnemains と Skeudwenn)" -#: data/com.github.stsdc.monitor.appdata.xml.in:164 -msgid "Fix contents of the window are not shown (Ryo Nakano)" -msgstr "ウィンドウの内容が表示されない不具合を修正 (Ryo Nakano)" +#~ msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +#~ msgstr "" +#~ "スワップが使用できない場合は使用率を表示しないように修正 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:165 -msgid "" -"ix no row is still selected when indicator options are enabled (Ryo Nakano)" -msgstr "" -"インジケーター機能が有効になっている場合も、プロセスが選択されない不具合を修" -"正 (Ryo Nakano)" +#~ msgid "Update Italian translation (Mirko Brombin)" +#~ msgstr "イタリア語翻訳を更新 (Mirko Brombin)" -#: data/com.github.stsdc.monitor.appdata.xml.in:166 -msgid "" -"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " -"process is selected (Ryo Nakano)" -msgstr "" -"プロセスが選択されていない状態で \"プロセスを終了\" ボタンや \"プロセスを強制" -"終了\" ボタンを押すと、アプリがクラッシュする不具合を修正 (Ryo Nakano)" +#~ msgid "Show swap usage (Ryo Nakano)" +#~ msgstr "スワップ使用率を表示する機能を追加 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:167 -msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" -msgstr "" -"プロセスの“強制終了”と“終了”とで別々のボタンに変更しました。(Evan Buss)" +#~ msgid "Code refactoring (Ryo Nakano)" +#~ msgstr "コードをリファクタリング (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:168 -msgid "Change screenshot to English (Christopher Crouse)" -msgstr "英語のスクリーンショットに変更 (Christopher Crouse)" +#~ msgid "Fix contents of the window are not shown (Ryo Nakano)" +#~ msgstr "ウィンドウの内容が表示されない不具合を修正 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:170 -msgid "Check if the default display is a X11 display (Hannes Schulze)" -msgstr "" -"デフォルトのディスプレイが X11 かどうかを確認するように修正 (Hannes Schulze)" +#~ msgid "" +#~ "ix no row is still selected when indicator options are enabled (Ryo " +#~ "Nakano)" +#~ msgstr "" +#~ "インジケーター機能が有効になっている場合も、プロセスが選択されない不具合を" +#~ "修正 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:171 -msgid "Update Spanish translation (Mario Rodrigo)" -msgstr "スペイン語翻訳を更新 (Mario Rodrigo)" +#~ msgid "" +#~ "Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +#~ "process is selected (Ryo Nakano)" +#~ msgstr "" +#~ "プロセスが選択されていない状態で \"プロセスを終了\" ボタンや \"プロセスを" +#~ "強制終了\" ボタンを押すと、アプリがクラッシュする不具合を修正 (Ryo Nakano)" -#: data/com.github.stsdc.monitor.appdata.xml.in:178 -msgid "Add start-in-background option to UI" -msgstr "“バックグラウンドで起動”オプションを UI に追加" +#~ msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +#~ msgstr "" +#~ "プロセスの“強制終了”と“終了”とで別々のボタンに変更しました。(Evan Buss)" -#: data/com.github.stsdc.monitor.appdata.xml.in:185 -msgid "Add start-in-background command line option" -msgstr "“バックグラウンドで起動”コマンドラインオプションを追加" +#~ msgid "Change screenshot to English (Christopher Crouse)" +#~ msgstr "英語のスクリーンショットに変更 (Christopher Crouse)" -#: data/com.github.stsdc.monitor.appdata.xml.in:186 -msgid "Add Italian and Portuguese translations" -msgstr "イタリア語とポルトガル語の翻訳を更新" +#~ msgid "Check if the default display is a X11 display (Hannes Schulze)" +#~ msgstr "" +#~ "デフォルトのディスプレイが X11 かどうかを確認するように修正 (Hannes " +#~ "Schulze)" -#: data/com.github.stsdc.monitor.appdata.xml.in:187 -msgid "Update Dutch, French and Spanish translations" -msgstr "オランダ語、フランス語、スペイン語の翻訳を更新" +#~ msgid "Update Spanish translation (Mario Rodrigo)" +#~ msgstr "スペイン語翻訳を更新 (Mario Rodrigo)" -#: data/com.github.stsdc.monitor.appdata.xml.in:188 -msgid "Fix Japanese translation" -msgstr "日本語翻訳を修正" +#~ msgid "Add start-in-background option to UI" +#~ msgstr "“バックグラウンドで起動”オプションを UI に追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:195 -msgid "Minor bug fix" -msgstr "軽微なバグ修正" +#~ msgid "Add start-in-background command line option" +#~ msgstr "“バックグラウンドで起動”コマンドラインオプションを追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:196 -msgid "Make End process button red" -msgstr "“プロセスを終了”ボタンを赤色に変更" +#~ msgid "Add Italian and Portuguese translations" +#~ msgstr "イタリア語とポルトガル語の翻訳を更新" -#: data/com.github.stsdc.monitor.appdata.xml.in:197 -msgid "Add Japanese translation" -msgstr "日本語翻訳を追加" +#~ msgid "Update Dutch, French and Spanish translations" +#~ msgstr "オランダ語、フランス語、スペイン語の翻訳を更新" -#: data/com.github.stsdc.monitor.appdata.xml.in:204 -msgid "Add CPU and RAM icons" -msgstr "CPU と RAM のアイコンを追加" +#~ msgid "Fix Japanese translation" +#~ msgstr "日本語翻訳を修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:205 -msgid "Fix bug, that caused hanging" -msgstr "フリーズの原因となっていたバグを修正" +#~ msgid "Minor bug fix" +#~ msgstr "軽微なバグ修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:206 -msgid "Update Polish and Russian translation" -msgstr "ポーランド語とロシア語の翻訳を更新" +#~ msgid "Make End process button red" +#~ msgstr "“プロセスを終了”ボタンを赤色に変更" -#: data/com.github.stsdc.monitor.appdata.xml.in:213 -msgid "Add Monitor indicator" -msgstr "専用のインジケーターを追加" +#~ msgid "Add Japanese translation" +#~ msgstr "日本語翻訳を追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:214 -msgid "Add missing extra French translations" -msgstr "メタデータ用のフランス語翻訳を追加" +#~ msgid "Add CPU and RAM icons" +#~ msgstr "CPU と RAM のアイコンを追加" -#: data/com.github.stsdc.monitor.appdata.xml.in:215 -msgid "" -"Fix: if icon missing for the process, icon is taken from previous process" -msgstr "" -"プロセスのアイコンが存在しない場合、列の一つ前のプロセスと同じアイコンを表示" -"していた不具合を修正" +#~ msgid "Fix bug, that caused hanging" +#~ msgstr "フリーズの原因となっていたバグを修正" -#: data/com.github.stsdc.monitor.appdata.xml.in:216 -msgid "Fix: search erases my input while I'm typing" -msgstr "検索処理が文字入力と干渉する不具合を修正" +#~ msgid "Update Polish and Russian translation" +#~ msgstr "ポーランド語とロシア語の翻訳を更新" -#: data/com.github.stsdc.monitor.appdata.xml.in:217 -msgid "Fix POTFILES" -msgstr "POTFILES を修正" +#~ msgid "Add Monitor indicator" +#~ msgstr "専用のインジケーターを追加" -#: data/com.github.stsdc.monitor.desktop.in:4 -msgid "System Monitor" -msgstr "システムモニター" +#~ msgid "Add missing extra French translations" +#~ msgstr "メタデータ用のフランス語翻訳を追加" -#: data/com.github.stsdc.monitor.desktop.in:5 -msgid "Manage processes and monitor resource usage of the system" -msgstr "プロセスを管理し、システムリソースの消費量を監視します" +#~ msgid "" +#~ "Fix: if icon missing for the process, icon is taken from previous process" +#~ msgstr "" +#~ "プロセスのアイコンが存在しない場合、列の一つ前のプロセスと同じアイコンを表" +#~ "示していた不具合を修正" -#: data/com.github.stsdc.monitor.desktop.in:12 -msgid "System monitor;System usage;Task manager;" -msgstr "" -"System monitor;System usage;Task manager;システムモニター;システム消費量;タス" -"クマネージャー;" +#~ msgid "Fix: search erases my input while I'm typing" +#~ msgstr "検索処理が文字入力と干渉する不具合を修正" + +#~ msgid "Fix POTFILES" +#~ msgstr "POTFILES を修正" diff --git a/po/extra/pl.po b/po/extra/pl.po index 8ef19baa..c4af47e3 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -10,8 +10,8 @@ msgstr "" "POT-Creation-Date: 2018-10-20 22:25+0900\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/po/extra/pt.po b/po/extra/pt.po index a88aaa69..70f9a40b 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -30,7 +30,8 @@ msgstr "Gerir processos e monitorizar os recursos do sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Mostrar a utilização dos recursos do sistema, filtrar e gerir processos." +msgstr "" +"Mostrar a utilização dos recursos do sistema, filtrar e gerir processos." #: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" diff --git a/po/extra/ro.po b/po/extra/ro.po index d4b566d9..c63082a5 100644 --- a/po/extra/ro.po +++ b/po/extra/ro.po @@ -9,14 +9,15 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" "PO-Revision-Date: 2020-12-16 09:58+0200\n" +"Last-Translator: \n" "Language-Team: \n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" -"Last-Translator: \n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 @@ -29,7 +30,9 @@ msgstr "Gestionează procesele și monitorizează resursele de sistem" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Afișează gradul de utilizare a resurselor de sistem, filtrează și gestionează procesele." +msgstr "" +"Afișează gradul de utilizare a resurselor de sistem, filtrează și " +"gestionează procesele." #: data/com.github.stsdc.monitor.appdata.xml.in:22 msgid "Stanisław Dac" @@ -49,4 +52,6 @@ msgstr "com.github.stsdc.monitor" #: data/com.github.stsdc.monitor.desktop.in:14 msgid "System monitor;System usage;Task manager;" -msgstr "System monitor;System usage;Task manager;Monitor de sistem;Manager de activități;Procese;Utilizarea sistemului;" +msgstr "" +"System monitor;System usage;Task manager;Monitor de sistem;Manager de " +"activități;Procese;Utilizarea sistemului;" diff --git a/po/extra/ru.po b/po/extra/ru.po index d979aa50..4a161264 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 2.0.6\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 diff --git a/po/extra/uk.po b/po/extra/uk.po index b55ee865..665e9a9c 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 3.0\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 From 0f107c92ebde6bf2552ef90cef0664d01c8b2aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:23:50 +0200 Subject: [PATCH 027/486] Remove deprecated Fedora/Copr section from Readme (#380) --- README.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/README.md b/README.md index ce2a865d..b968a196 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,7 @@ Release - GitHub Workflow Status - + GitHub Workflow Status @@ -41,16 +40,6 @@ sudo apt install com.github.stsdc.monitor Monitor will be available from the Applications menu. -### ~~Fedora (36)~~ - -> [!WARNING] -> Dropped support due to lack of Pantheon dependencies on COPR. - -```bash -sudo dnf copr enable stsdc/monitor -sudo dnf install com.github.stsdc.monitor -``` - ## Development ### Install dependencies From 2e2a048bab61c7a71ea704689dbe9319821497a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 02:30:13 +0200 Subject: [PATCH 028/486] Remove the code related to the docker container feature (#381) --- README.md | 1 - data/com.github.stsdc.monitor.gschema.xml | 5 - debian/control | 3 +- meson.build | 2 - src/MainWindow.vala | 10 - src/Managers/Container.vala | 263 -------------- src/Managers/ContainerManager.vala | 338 ------------------ src/Managers/HttpClientAsync.vala | 156 -------- src/Models/ContainersTreeViewModel.vala | 160 --------- .../ContainerInfoCharts.vala | 67 ---- .../ContainerInfoHeader.vala | 102 ------ .../ContainerInfoView/ContainerInfoView.vala | 52 --- .../ContainerView/ContainerTreeView.vala | 212 ----------- src/Views/ContainerView/ContainerView.vala | 137 ------- .../PreferencesGeneralPage.vala | 16 - src/meson.build | 10 - 16 files changed, 1 insertion(+), 1533 deletions(-) delete mode 100644 src/Managers/Container.vala delete mode 100644 src/Managers/ContainerManager.vala delete mode 100644 src/Managers/HttpClientAsync.vala delete mode 100644 src/Models/ContainersTreeViewModel.vala delete mode 100644 src/Views/ContainerView/ContainerInfoView/ContainerInfoCharts.vala delete mode 100644 src/Views/ContainerView/ContainerInfoView/ContainerInfoHeader.vala delete mode 100644 src/Views/ContainerView/ContainerInfoView/ContainerInfoView.vala delete mode 100644 src/Views/ContainerView/ContainerTreeView.vala delete mode 100644 src/Views/ContainerView/ContainerView.vala diff --git a/README.md b/README.md index b968a196..54455b7d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,6 @@ ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-processes.png) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-system.png) -![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-containers.png) ## Install diff --git a/data/com.github.stsdc.monitor.gschema.xml b/data/com.github.stsdc.monitor.gschema.xml index 4bc27dbf..f192bb83 100644 --- a/data/com.github.stsdc.monitor.gschema.xml +++ b/data/com.github.stsdc.monitor.gschema.xml @@ -99,11 +99,6 @@ 2 Update time This value sets update time for updating data and charts. -
- - false - To show Containers view or not - To show Containers view or not diff --git a/debian/control b/debian/control index ab9b29f2..27e985cc 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,6 @@ Build-Depends: meson, libudisks2-dev, libxnvctrl0, libxnvctrl-dev, - libcurl4-gnutls-dev, libjson-glib-dev, libflatpak-dev, sassc @@ -25,4 +24,4 @@ Standards-Version: 4.1.1 Package: com.github.stsdc.monitor Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} -Description: Manage processes and monitor system resources. And containers +Description: Manage processes and monitor system resources diff --git a/meson.build b/meson.build index 8dfcf370..58ec8e1a 100644 --- a/meson.build +++ b/meson.build @@ -46,8 +46,6 @@ app_dependencies = [ meson.get_compiler('c').find_library('XNVCtrl'), meson.get_compiler('c').find_library('X11'), meson.get_compiler('vala').find_library('libxnvctrl', dirs: vapidir), - meson.get_compiler('vala').find_library('libcurl', dirs: vapidir), - meson.get_compiler('c').find_library('libcurl', dirs: vapidir), ] diff --git a/src/MainWindow.vala b/src/MainWindow.vala index eba8a92b..c216b18f 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -9,7 +9,6 @@ public class Monitor.MainWindow : Hdy.ApplicationWindow { public ProcessView process_view; public SystemView system_view; - public ContainerView container_view; private Gtk.Stack stack; private Statusbar statusbar; @@ -32,17 +31,12 @@ public class Monitor.MainWindow : Hdy.ApplicationWindow { process_view = new ProcessView (); system_view = new SystemView (resources); - container_view = new ContainerView (); stack = new Gtk.Stack (); stack.set_transition_type (Gtk.StackTransitionType.SLIDE_LEFT_RIGHT); stack.add_titled (process_view, "process_view", _("Processes")); stack.add_titled (system_view, "system_view", _("System")); - if (MonitorApp.settings.get_boolean ("containers-view-state")) { - stack.add_titled (container_view, "container_view", _("Containers")); - } - Gtk.StackSwitcher stack_switcher = new Gtk.StackSwitcher (); stack_switcher.valign = Gtk.Align.CENTER; @@ -79,10 +73,6 @@ public class Monitor.MainWindow : Hdy.ApplicationWindow { Timeout.add_seconds (MonitorApp.settings.get_int ("update-time"), () => { process_view.update (); - - container_view.update (); - - Idle.add (() => { system_view.update (); dbusserver.indicator_state (MonitorApp.settings.get_boolean ("indicator-state")); diff --git a/src/Managers/Container.vala b/src/Managers/Container.vala deleted file mode 100644 index 2c30e693..00000000 --- a/src/Managers/Container.vala +++ /dev/null @@ -1,263 +0,0 @@ -namespace Monitor { - enum DockerContainerType { - GROUP, - CONTAINER - } - - public enum DockerContainerState { - UNKNOWN, - PAUSED, - RUNNING, - STOPPED, - } - - public class DockerContainer : Object { - - public bool exists { get; private set; } - - public int64 mem_used { get; private set; } - public int64 mem_available { get; private set; } - - public double mem_percentage { - get { - if (this.mem_used == 0) return 0; - return (((double) mem_used / (double) mem_available) * 100.0); - } - } - - int64 total_usage; - int64 pre_total_usage; - int64 system_cpu_usage; - int64 pre_system_cpu_usage; - public int64 number_cpus; - - public double cpu_percentage { - get { - if (this.total_usage == 0) return -1; - int64 cpu_delta = total_usage - this.pre_total_usage; - int64 system_cpu_delta = system_cpu_usage - this.pre_system_cpu_usage; - return ((double) cpu_delta / (double) system_cpu_delta) * (double) this.number_cpus * 100.0; - } - } - - const int HISTORY_BUFFER_SIZE = 30; - public Gee.ArrayList cpu_percentage_history = new Gee.ArrayList (); - public Gee.ArrayList mem_percentage_history = new Gee.ArrayList (); - - - // public Container ? api_container { get; construct set; } - - public string id; - - private string _name; - public string name { - get { - return _name; - } - set { - _name = format_name (value); - } - } - public string image; - // public DockerContainerType type; - public string state; - - public string compose_project; - public string compose_service; - - public string ? config_path; - public Gee.ArrayList ? services; - - public HttpClient http_client; - - private Cgroup cgroup; - - public DockerContainer (string id, ref HttpClient http_client) { - this.id = id; - this.cgroup = new Cgroup (this.id); - this.http_client = http_client; - this.exists = true; - this.number_cpus = 1; - // this.id = id; - // this.type = DockerContainerType.CONTAINER; - } - - public string format_name (string name) { - var value = name; - - if (value[0] == '/') { - value = value.splice (0, 1); - } - - return value; - } - - public DockerContainerState get_state (string state) { - if (state == "running") { - return DockerContainerState.RUNNING; - } - if (state == "paused") { - return DockerContainerState.PAUSED; - } - if (state == "exited") { - return DockerContainerState.STOPPED; - } - - return DockerContainerState.UNKNOWN; - } - - public static bool equal (DockerContainer a, DockerContainer b) { - return a.id == b.id; - } - - private static Json.Node parse_json (string data) throws ApiClientError { - try { - var parser = new Json.Parser (); - parser.load_from_data (data); - - var node = parser.get_root (); - - if (node == null) { - throw new ApiClientError.ERROR_JSON ("Cannot parse json from: %s", data); - } - - return node; - } catch (Error error) { - throw new ApiClientError.ERROR_JSON (error.message); - } - } - - public async bool stats () throws ApiClientError { - try { - var resp = yield this.http_client.r_get (@"/containers/$(this.id)/stats?stream=false"); - - if (resp.code == 400) { - throw new ApiClientError.ERROR ("Bad parameter"); - } - if (resp.code == 500) { - throw new ApiClientError.ERROR ("Server error"); - } - - var json = yield resp.body_data_stream.read_line_utf8_async (); - - if (json == null || "No such container" in json) { - debug ("Container cease to exist: %s", this.name); - this.exists = false; - return false; - } - - // assert_nonnull (json); - - var root_node = parse_json (json); - var root_object = root_node.get_object (); - // assert_nonnull (root_object); - - var json_memory_stats = root_object.get_object_member ("memory_stats"); - if (json_memory_stats == null) throw new ApiClientError.ERROR ("json_memory_stats is null"); - - // Newer version of json library has default values option - if (json_memory_stats.has_member ("stats")) { - var json_memory_stats_stats = json_memory_stats.get_object_member ("stats"); - this.mem_used = json_memory_stats.get_int_member_with_default ("usage", 0) - json_memory_stats_stats.get_int_member ("inactive_file"); - this.mem_available = json_memory_stats.get_int_member_with_default ("limit", 0); - } - - var json_cpu_stats = root_object.get_object_member ("cpu_stats"); - assert_nonnull (json_cpu_stats); - var json_precpu_stats = root_object.get_object_member ("precpu_stats"); - - var json_cpu_usage = json_cpu_stats.get_object_member ("cpu_usage"); - this.total_usage = json_cpu_usage.get_int_member ("total_usage"); - - var json_precpu_usage = json_precpu_stats.get_object_member ("cpu_usage"); - this.pre_total_usage = json_precpu_usage.get_int_member ("total_usage"); - - - if (json_cpu_stats.has_member ("system_cpu_usage")) { - this.system_cpu_usage = json_cpu_stats.get_int_member_with_default ("system_cpu_usage", 0); - this.pre_system_cpu_usage = json_precpu_stats.get_int_member_with_default ("system_cpu_usage", 0); - - this.number_cpus = json_cpu_stats.get_int_member_with_default ("online_cpus", 0); - } - - // debug("%lld, %lld", total_usage, pretotal_usage); - - // Making RAM history - if (mem_percentage_history.size == HISTORY_BUFFER_SIZE) { - mem_percentage_history.remove_at (0); - } - mem_percentage_history.add (mem_percentage); - - // Making RAM history - if (cpu_percentage_history.size == HISTORY_BUFFER_SIZE) { - cpu_percentage_history.remove_at (0); - } - cpu_percentage_history.add (cpu_percentage); - - return true; - } catch (HttpClientError error) { - throw new ApiClientError.ERROR (error.message); - } catch (IOError error) { - throw new ApiClientError.ERROR (error.message); - } - } - - public void update () { - - this.stats.begin (); - - } - - // private uint64 get_mem_stat_total_inactive_file () { - // var file = File.new_for_path ("/sys/fs/cgroup/memory/docker/%s/memory.stat".printf (id)); - - ///* make sure that it exists, not an error if it doesn't */ - // if (!file.query_exists ()) { - // warning ("File doesn't exist ???"); - - // return 0; - // } - - // string mem_stat_total_inactive_file = "bruh"; - - - // try { - // var dis = new DataInputStream (file.read ()); - // string ? line; - // while ((line = dis.read_line ()) != null) { - // var splitted_line = line.split (" "); - // switch (splitted_line[0]) { - // case "total_inactive_file": - // mem_stat_total_inactive_file = splitted_line[1]; - // break; - // default: - // break; - // } - // } - // return uint64.parse (mem_stat_total_inactive_file); - // } catch (Error e) { - // warning ("Error reading file '%s': %s\n", file.get_path (), e.message); - // return 0; - // } - // } - - // private uint64 get_mem_usage_file () { - // var file = File.new_for_path ("/sys/fs/cgroup/memory/docker/%s/memory.usage_in_bytes".printf (id)); - - ///* make sure that it exists, not an error if it doesn't */ - // if (!file.query_exists ()) { - // warning ("File doesn't exist ???"); - // return 0; - // } - - // try { - // var dis = new DataInputStream (file.read ()); - // return uint64.parse (dis.read_line ()); - // } catch (Error e) { - // warning ("Error reading file '%s': %s\n", file.get_path (), e.message); - // return 0; - // } - // } - - } -} diff --git a/src/Managers/ContainerManager.vala b/src/Managers/ContainerManager.vala deleted file mode 100644 index 9d04fae1..00000000 --- a/src/Managers/ContainerManager.vala +++ /dev/null @@ -1,338 +0,0 @@ -namespace Monitor { - public errordomain ApiClientError { - ERROR, - ERROR_JSON, - ERROR_ACCESS, - ERROR_NO_ENTRY, - } - - // struct Container { - // public string id; - // public string name; - // public string image; - // public string state; - // public string ? label_project; - // public string ? label_service; - // public string ? label_config; - // public string ? label_workdir; - // } - - // struct ContainerInspectInfo { - // public string name; - // public string image; - // public string status; - // public string[] ? binds; - // public string[] ? envs; - // public string[] ? ports; - // } - - // struct DockerVersionInfo { - // public string version; - // public string api_version; - // } - - public class ContainerManager : Object { - private static GLib.Once instance; - public static unowned ContainerManager get_default () { - return instance.once (() => { return new ContainerManager (); }); - } - - public HttpClient http_client; - - private Gee.Map container_list = new Gee.HashMap (); - - public signal void container_added (DockerContainer container); - public signal void container_removed (string id); - public signal void updated (); - - public ContainerManager () { - this.http_client = new HttpClient (); - this.http_client.verbose = false; - this.http_client.base_url = "http://localhost/v1.41"; - this.http_client.unix_socket_path = "/run/docker.sock"; - - this.update_containers.begin (); - - } - - private static Json.Node parse_json (string data) throws ApiClientError { - try { - var parser = new Json.Parser (); - parser.load_from_data (data); - - var node = parser.get_root (); - - if (node == null) { - throw new ApiClientError.ERROR_JSON ("Cannot parse json from: %s", data); - } - - return node; - } catch (Error error) { - throw new ApiClientError.ERROR_JSON (error.message); - } - } - - public DockerContainer ? get_container (string id) { - // if (!container_list.has_key (id)) return; - return container_list[id]; - } - - public Gee.Map get_container_list () { - return container_list.read_only_view; - } - - private bool add_container (Json.Object json_container) { - if (!container_list.has_key (json_container.get_string_member ("Id"))) { - - var container = new DockerContainer (json_container.get_string_member ("Id"), ref this.http_client) { - image = json_container.get_string_member ("Image"), - state = json_container.get_string_member ("State"), - }; - - var name_array = json_container.get_array_member ("Names"); - foreach (var name_node in name_array.get_elements ()) { - container.name = container.format_name (name_node.get_string ()); - assert_nonnull (container.name); - break; - } - - var labels_object = json_container.get_object_member ("Labels"); - assert_nonnull (labels_object); - - if (labels_object.has_member ("com.docker.compose.project")) { - container.compose_project = labels_object.get_string_member ("com.docker.compose.project"); - } - if (labels_object.has_member ("com.docker.compose.service")) { - container.compose_service = labels_object.get_string_member ("com.docker.compose.service"); - } - // if (labels_object.has_member ("com.docker.compose.project.config_files")) { - // container.label_config = labels_object.get_string_member ("com.docker.compose.project.config_files"); - // } - // if (labels_object.has_member ("com.docker.compose.project.working_dir")) { - // container.label_workdir = labels_object.get_string_member ("com.docker.compose.project.working_dir"); - // } - - container_list.set (container.id, container); - this.container_added (container); - return true; - } else { - return false; - } - } - - private void remove_container (DockerContainer container) { - debug ("removing container: %s", container.name); - var id = container.id; - if (container_list.has_key (id)) { - container_list.unset (id); - this.container_removed (id); - } - } - - public async void update_containers () throws ApiClientError { - try { - var resp = yield this.http_client.r_get ("/containers/json?all=true"); - - // - if (resp.code == 400) { - throw new ApiClientError.ERROR ("Bad parameter"); - } - if (resp.code == 500) { - throw new ApiClientError.ERROR ("Server error"); - } - - var json = ""; - string ? line = null; - - while ((line = resp.body_data_stream.read_line_utf8 ()) != null) { - json += line; - } - - var root_node = parse_json (json); - var root_array = root_node.get_array (); - assert_nonnull (root_array); - - foreach (var container_node in root_array.get_elements ()) { - var container_object = container_node.get_object (); - assert_nonnull (container_object); - - this.add_container (container_object); - - - } - var remove_me = new Gee.HashSet (); - foreach (var container in this.container_list.values) { - // debug ("CM updating %s", container.name); - if (!container.exists) { - remove_me.add (container); - continue; - } - container.update (); - } - - foreach (var container in remove_me) { - debug (container.name); - remove_container (container); - } - /* emit the updated signal so that subscribers can update */ - - updated (); - - } catch (HttpClientError error) { - if (error is HttpClientError.ERROR_NO_ENTRY) { - throw new ApiClientError.ERROR_NO_ENTRY (error.message); - } else if (error is HttpClientError.ERROR_ACCESS) { - throw new ApiClientError.ERROR_ACCESS (error.message); - } else { - throw new ApiClientError.ERROR (error.message); - } - } catch (IOError error) { - throw new ApiClientError.ERROR (error.message); - } - } - - // public async ContainerInspectInfo inspect_container (DockerContainer container) throws ApiClientError { - // try { - // var container_info = ContainerInspectInfo (); - // var resp = yield this.http_client.r_get (@"/containers/$(container.id)/json"); - - // if (resp.code == 404) { - // throw new ApiClientError.ERROR ("No such container"); - // } - // if (resp.code == 500) { - // throw new ApiClientError.ERROR ("Server error"); - // } - - //// - // if (resp.code == 404) { - // throw new ApiClientError.ERROR ("No such container"); - // } - // if (resp.code == 500) { - // throw new ApiClientError.ERROR ("Server error"); - // } - - //// - // var json = yield resp.body_data_stream.read_line_utf8_async (); - - // assert_nonnull (json); - - // var root_node = parse_json (json); - // var root_object = root_node.get_object (); - // assert_nonnull (root_object); - - //// - // container_info.name = root_object.get_string_member ("Name"); - - //// - // var state_object = root_object.get_object_member ("State"); - // assert_nonnull (state_object); - - // container_info.status = state_object.get_string_member ("Status"); - - //// - // var config_object = root_object.get_object_member ("Config"); - // assert_nonnull (config_object); - - // container_info.image = config_object.get_string_member ("Image"); - - //// - // var env_array = config_object.get_array_member ("Env"); - - // if (env_array != null && env_array.get_length () > 0) { - // container_info.envs = new string[0]; - - // foreach (var env_node in env_array.get_elements ()) { - // container_info.envs += env_node.get_string () ?? _("Unknown"); - // } - // } - - //// - // var host_config_object = root_object.get_object_member ("HostConfig"); - - // if (host_config_object != null) { - // var binds_array = host_config_object.get_array_member ("Binds"); - - // if (binds_array != null && binds_array.get_length () > 0) { - // container_info.binds = new string[0]; - - // foreach (var bind_node in binds_array.get_elements ()) { - // container_info.binds += bind_node.get_string () ?? _("Unknown"); - // } - // } - // } - - //// - // var port_bindings_object = host_config_object.get_object_member ("PortBindings"); - - // if (port_bindings_object != null) { - // port_bindings_object.foreach_member ((obj, key, port_binding_node) => { - // var port_binding_array = port_binding_node.get_array (); - - // if (port_binding_array != null && port_binding_array.get_length () > 0) { - // container_info.ports = new string[0]; - - // foreach (var port_node in port_binding_array.get_elements ()) { - // var port_object = port_node.get_object (); - // assert_nonnull (port_object); - - //// *with_default () works only with > 1.6.0 of json-glib - //// var ip = port_object.get_string_member_with_default ("HostIp", ""); - //// var port = port_object.get_string_member_with_default ("HostPort", "-"); - // var ip = port_object.get_string_member ("HostIp"); - // var port = port_object.get_string_member ("HostPort"); - // container_info.ports += key + (ip.length > 0 ? @"$ip:" : ":") + port; - // } - // } - // }); - // } - - // return container_info; - // } catch (HttpClientError error) { - // throw new ApiClientError.ERROR (error.message); - // } catch (IOError error) { - // throw new ApiClientError.ERROR (error.message); - // } - // } - - // public async DockerVersionInfo version () throws ApiClientError { - // try { - // var version = DockerVersionInfo (); - // var resp = yield this.http_client.r_get ("/version"); - - //// - // var json = yield resp.body_data_stream.read_line_utf8_async (); - - // assert_nonnull (json); - - // var root_node = parse_json (json); - // var root_object = root_node.get_object (); - // assert_nonnull (root_object); - - //// *with_default () works only with > 1.6.0 of json-glib - //// version.version = root_object.get_string_member_with_default ("Version", "-"); - //// version.api_version = root_object.get_string_member_with_default ("ApiVersion", "-"); - // version.version = root_object.get_string_member ("Version"); - // version.api_version = root_object.get_string_member ("ApiVersion"); - // return version; - // } catch (HttpClientError error) { - // throw new ApiClientError.ERROR (error.message); - // } catch (IOError error) { - // throw new ApiClientError.ERROR (error.message); - // } - // } - - public async void ping () throws ApiClientError { - try { - this.http_client.r_get ("/_ping"); - - } catch (HttpClientError error) { - if (error is HttpClientError.ERROR_NO_ENTRY) { - throw new ApiClientError.ERROR_NO_ENTRY (error.message); - } else { - throw new ApiClientError.ERROR (error.message); - } - } - } - - } -} diff --git a/src/Managers/HttpClientAsync.vala b/src/Managers/HttpClientAsync.vala deleted file mode 100644 index f5a222b0..00000000 --- a/src/Managers/HttpClientAsync.vala +++ /dev/null @@ -1,156 +0,0 @@ -namespace Monitor { - public errordomain HttpClientError { - ERROR, - ERROR_ACCESS, - ERROR_NO_ENTRY - } - - public enum HttpClientMethod { - GET, - POST, - DELETE, - } - - public class HttpClient : Object { - public bool verbose = false; - public string ? unix_socket_path { get; set; } - public string ? base_url; - - public async HttpClientResponse r_get (string url) throws HttpClientError { - return yield this.request (HttpClientMethod.GET, url, new HttpClientResponse ()); - - } - - public async HttpClientResponse r_post (string url) throws HttpClientError { - return yield this.request (HttpClientMethod.POST, url, new HttpClientResponse ()); - - } - - public async HttpClientResponse r_delete (string url) throws HttpClientError { - return yield this.request (HttpClientMethod.DELETE, url, new HttpClientResponse ()); - - } - - public async HttpClientResponse request (HttpClientMethod method, string url, HttpClientResponse response) throws HttpClientError { - var curl = new Curl.EasyHandle (); - - Curl.Code r; - - r = curl.setopt (Curl.Option.VERBOSE, this.verbose ? 1 : 0); - assert_true (r == Curl.Code.OK); - r = curl.setopt (Curl.Option.URL, (this.base_url ?? "") + url); - assert_true (r == Curl.Code.OK); - r = curl.setopt (Curl.Option.UNIX_SOCKET_PATH, this.unix_socket_path); - assert_true (r == Curl.Code.OK); - r = curl.setopt (Curl.Option.CUSTOMREQUEST, this.get_request_method (method)); - assert_true (r == Curl.Code.OK); - r = curl.setopt (Curl.Option.WRITEDATA, (void *) response.memory_stream); - assert_true (r == Curl.Code.OK); - r = curl.setopt (Curl.Option.WRITEFUNCTION, HttpClientResponse.read_body_data); - assert_true (r == Curl.Code.OK); - - // debug ("call api method: %s - %s", this.get_request_method (method), url); - - yield this.perform (curl); - - long curl_errno = -1; - - r = curl.getinfo (Curl.Info.OS_ERRNO, &curl_errno); - assert_true (r == Curl.Code.OK); - - if (curl_errno == Posix.ENOENT) { - throw new HttpClientError.ERROR_NO_ENTRY (strerror ((int) curl_errno)); - } else if (curl_errno == Posix.EACCES) { - throw new HttpClientError.ERROR_ACCESS (strerror ((int) curl_errno)); - } else if (curl_errno > 0) { - throw new HttpClientError.ERROR ("Unknown error"); - } - - if (r == Curl.Code.OK) { - curl.getinfo (Curl.Info.RESPONSE_CODE, &response.code); - - return response; - } - - throw new HttpClientError.ERROR (Curl.Global.strerror (r)); - } - - public string get_request_method (HttpClientMethod method) { - var result = ""; - - switch (method) { - case HttpClientMethod.GET: - result = "GET"; - break; - - case HttpClientMethod.POST: - result = "POST"; - break; - - case HttpClientMethod.DELETE: - result = "DELETE"; - break; - } - - return result; - } - - private async Curl.Code perform (Curl.EasyHandle curl) throws HttpClientError { - string ? err_msg = null; - var r = Curl.Code.OK; - - var task = new Task (this, null, (obj, cl_task) => { - try { - r = (Curl.Code)cl_task.propagate_int (); - } catch (Error error) { - err_msg = error.message; - } finally { - this.perform.callback (); - } - }); - - task.set_task_data (curl, null); - task.run_in_thread ((task, http_client, curl, cancellable) => { - unowned var cl_curl = (Curl.EasyHandle)curl; - - var cl_r = cl_curl.perform (); - task.return_int (cl_r); - }); - - yield; - - if (err_msg != null) { - throw new HttpClientError.ERROR (@"Curl perform error: $err_msg"); - } - - return r; - } - - } - - public class HttpClientResponse : Object { - public int code; - public MemoryInputStream memory_stream { get; construct set; } - public DataInputStream body_data_stream { get; construct set; } - - public HttpClientResponse () { - this.code = 0; - this.memory_stream = new MemoryInputStream (); - this.body_data_stream = new DataInputStream (this.memory_stream); - } - - public static size_t read_body_data (void * buf, size_t size, size_t nmemb, void * data) { - size_t real_size = size * nmemb; - uint8[] buffer = new uint8[real_size]; - var response_memory_stream = (MemoryInputStream) data; - - Posix.memcpy ((void *) buffer, buf, real_size); - response_memory_stream.add_data (buffer); - - // debug ("http client bytes read: %d", (int)real_size); - - return real_size; - } - - } -} diff --git a/src/Models/ContainersTreeViewModel.vala b/src/Models/ContainersTreeViewModel.vala deleted file mode 100644 index 5fed849d..00000000 --- a/src/Models/ContainersTreeViewModel.vala +++ /dev/null @@ -1,160 +0,0 @@ -public enum Monitor.ContainerColumn { - ICON, - NAME, - CPU, - MEMORY, - // STATE, - ID -} - -public class Monitor.ContainersTreeViewModel : Gtk.TreeStore { - public ContainerManager container_manager; - private Gee.HashMap container_rows = new Gee.HashMap (); - private Gee.HashMap project_rows = new Gee.HashMap (); - public signal void added_first_row (); - - construct { - set_column_types (new Type[] { - typeof (string), - typeof (string), - typeof (double), - typeof (int64), - typeof (string), - }); - - container_manager = ContainerManager.get_default (); - - container_manager.updated.connect (update_model); - container_manager.container_added.connect ((container) => add_container (container)); - container_manager.container_removed.connect ((id) => remove_container (id)); - - Idle.add (() => { add_running_containers (); return false; }); - } - - private void add_running_containers () { - debug ("add_running_containers"); - var containers = container_manager.get_container_list (); - foreach (var container in containers.values) { - add_container (container); - } - } - - private bool add_container (DockerContainer container) { - if (container != null && !container_rows.has_key (container.id)) { - debug ("Add container %s %s", container.name, container.id); - // add the process to the model - - - - if (container.compose_project != null) { - if (!project_rows.has_key (container.compose_project)) { - Gtk.TreeIter parent_iter; - append (out parent_iter, null); // null means top-level - set (parent_iter, - ContainerColumn.ICON, "", - ContainerColumn.NAME, container.compose_project, - ContainerColumn.ID, Utils.NO_DATA, - // ContainerColumn.STATE, 0, - -1); - project_rows.set (container.compose_project, parent_iter); - } - Gtk.TreeIter child_iter; - append (out child_iter, project_rows[container.compose_project]); - set (child_iter, - ContainerColumn.ICON, "", - ContainerColumn.NAME, container.compose_service, - ContainerColumn.ID, container.id, - // ContainerColumn.STATE, 0, - -1); - - // add the process to our cache of process_rows - container_rows.set (container.id, child_iter); - - } else { - Gtk.TreeIter parent_iter; - append (out parent_iter, null); // null means top-level - set (parent_iter, - ContainerColumn.ICON, "", - ContainerColumn.NAME, container.name, - ContainerColumn.ID, container.id, - // ContainerColumn.STATE, 0, - -1); - // add the process to our cache of process_rows - container_rows.set (container.id, parent_iter); - } - - - if (container_rows.size < 1) { - added_first_row (); - } - - return true; - } - return false; - } - - private void get_children_total (Gtk.TreeIter iter, ref int64 memory, ref double cpu) { - // go through all children and add up CPU/Memory usage - // TODO: this is a naive way to do things - Gtk.TreeIter child_iter; - - if (iter_children (out child_iter, iter)) { - do { - get_children_total (child_iter, ref memory, ref cpu); - Value cpu_value; - Value memory_value; - get_value (child_iter, Column.CPU, out cpu_value); - get_value (child_iter, Column.MEMORY, out memory_value); - memory += memory_value.get_int64 (); - cpu += cpu_value.get_double (); - } while (iter_next (ref child_iter)); - } - } - - private void update_model () { - foreach (string id in container_rows.keys) { - DockerContainer container = container_manager.get_container (id); - // debug("%s, %lld", container.name, container.mem_used); - Gtk.TreeIter iter = container_rows[id]; - set (iter, - Column.CPU, container.cpu_percentage, - Column.MEMORY, container.mem_used, - -1); - } - var remove_me = new Gee.HashSet (); - foreach (var project in project_rows) { - Gtk.TreeIter child_iter; - var project_iter = project.value; - - if (!iter_children (out child_iter, project_iter)) { - debug ("Project %s has no services! Will be removed.", project.key); - remove (ref project_iter); - remove_me.add (project.key); - continue; - } - - int64 total_mem = 0; - double total_cpu = 0; - this.get_children_total (project_iter, ref total_mem, ref total_cpu); - set (project_iter, - Column.CPU, total_cpu, - Column.MEMORY, total_mem, - -1); - } - - foreach (string project_name in remove_me) { - project_rows.unset (project_name); - } - } - - private void remove_container (string id) { - // if process rows has pid - if (container_rows.has_key (id)) { - debug ("remove container %s from model".printf (id)); - var cached_iter = container_rows.get (id); - remove (ref cached_iter); - container_rows.unset (id); - } - } - -} diff --git a/src/Views/ContainerView/ContainerInfoView/ContainerInfoCharts.vala b/src/Views/ContainerView/ContainerInfoView/ContainerInfoCharts.vala deleted file mode 100644 index 8ad2f651..00000000 --- a/src/Views/ContainerView/ContainerInfoView/ContainerInfoCharts.vala +++ /dev/null @@ -1,67 +0,0 @@ -public class Monitor.ContainerInfoCharts : Gtk.Grid { - private Gtk.Label cpu_label; - private Gtk.Label ram_label; - - private Chart cpu_chart; - private Chart ram_chart; - - construct { - column_spacing = 6; - row_spacing = 6; - vexpand = false; - column_homogeneous = true; - row_homogeneous = false; - - cpu_chart = new Chart (1); - cpu_chart.set_serie_color (0, Utils.Colors.get_rgba_color (Utils.Colors.LIME_300)); - - ram_chart = new Chart (1); - ram_chart.set_serie_color (0, Utils.Colors.get_rgba_color (Utils.Colors.LIME_300)); - - cpu_chart.height_request = 60; - ram_chart.height_request = 60; - - var cpu_graph_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); - cpu_graph_box.add (cpu_chart); - - var mem_graph_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); - mem_graph_box.add (ram_chart); - - cpu_label = new Gtk.Label ("CPU: " + Utils.NO_DATA); - cpu_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL); - cpu_label.halign = Gtk.Align.START; - - ram_label = new Gtk.Label ("RAM: " + Utils.NO_DATA); - ram_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL); - ram_label.halign = Gtk.Align.START; - - attach (cpu_label, 0, 0, 1, 1); - attach (ram_label, 1, 0, 1, 1); - - attach (cpu_graph_box, 0, 1, 1, 1); - attach (mem_graph_box, 1, 1, 1, 1); - } - - public void set_charts_data (DockerContainer container) { - cpu_chart.preset_data (0, container.cpu_percentage_history); - ram_chart.preset_data (0, container.mem_percentage_history); - } - - public void update (DockerContainer container) { - // If containers uses more then one core, graph skyrockets over top border - // cpu_chart.config.y_axis.fixed_max = 100.0 * container.number_cpus; - - cpu_label.set_text ((_("CPU: %.1f%%")).printf (container.cpu_percentage > 0 ? container.cpu_percentage : 0)); - ram_label.set_text ((_("RAM: %.1f%%")).printf (container.mem_percentage)); - - cpu_chart.update (0, container.cpu_percentage > 0 ? container.cpu_percentage / container.number_cpus : 0.0); - ram_chart.update (0, container.mem_percentage); - } - - public void clear_graphs () { - cpu_chart.clear (); - ram_chart.clear (); - - } - -} diff --git a/src/Views/ContainerView/ContainerInfoView/ContainerInfoHeader.vala b/src/Views/ContainerView/ContainerInfoView/ContainerInfoHeader.vala deleted file mode 100644 index bff68aa9..00000000 --- a/src/Views/ContainerView/ContainerInfoView/ContainerInfoHeader.vala +++ /dev/null @@ -1,102 +0,0 @@ -public class Monitor.ContainerInfoHeader : Gtk.Grid { - private Gtk.Image icon; - public Gtk.Label state; - public Gtk.Label container_name; - public Gtk.Label container_image; - public LabelRoundy pid; - - public LabelRoundy ppid; - public LabelRoundy pgrp; - public LabelRoundy nice; - public LabelRoundy priority; - public LabelRoundy num_threads; - public LabelRoundy username; - - private Regex ? regex; - - construct { - column_spacing = 12; - - /* *INDENT-OFF* */ - regex = /(?i:^.*\.(xpm|png)$)/; // vala-lint=space-before-paren, - /* *INDENT-ON* */ - - icon = new Gtk.Image.from_icon_name ("application-x-executable", Gtk.IconSize.DIALOG); - icon.set_pixel_size (64); - icon.valign = Gtk.Align.END; - - state = new Gtk.Label ("?"); - state.halign = Gtk.Align.START; - state.get_style_context ().add_class ("state_badge"); - - var icon_container = new Gtk.Fixed (); - icon_container.put (icon, 0, 0); - icon_container.put (state, -5, 48); - - container_name = new Gtk.Label (_("N/A")); - container_name.get_style_context ().add_class ("h2"); - container_name.ellipsize = Pango.EllipsizeMode.END; - container_name.tooltip_text = _("N/A"); - container_name.halign = Gtk.Align.START; - container_name.valign = Gtk.Align.START; - - pid = new LabelRoundy (_("PID")); - nice = new LabelRoundy (_("NI")); - priority = new LabelRoundy (_("PRI")); - num_threads = new LabelRoundy (_("THR")); - // ppid = new LabelRoundy (_("PPID")); - // pgrp = new LabelRoundy (_("PGRP")); - - // TODO: tooltip_text UID - username = new LabelRoundy (""); - - // var wrapper = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); - // wrapper.add (pid); - // wrapper.add (priority); - // wrapper.add (nice); - // wrapper.add (num_threads); - // wrapper.add (username); - - container_image = new Gtk.Label (Utils.NO_DATA); - - container_image.get_style_context ().add_class ("dim-label"); - container_image.get_style_context ().add_class ("image"); - container_image.max_width_chars = 48; - container_image.ellipsize = Pango.EllipsizeMode.END; - container_image.halign = Gtk.Align.START; - - attach (icon_container, 0, 0, 1, 2); - attach (container_name, 1, 0, 3, 1); - attach (container_image, 1, 1, 1, 1); - } - - public void update (DockerContainer container) { - container_name.set_text (container.name); - container_name.tooltip_text = container.id; - container_image.set_text (container.image); - // pid.set_text (process.stat.pid.to_string ()); - // nice.set_text (process.stat.nice.to_string ()); - // priority.set_text (process.stat.priority.to_string ()); - - // if (process.uid == 0) { - // username.val.get_style_context ().add_class ("username-root"); - // username.val.get_style_context ().remove_class ("username-other"); - // username.val.get_style_context ().remove_class ("username-current"); - // } else if (process.uid == (int) Posix.getuid ()) { - // username.val.get_style_context ().add_class ("username-current"); - // username.val.get_style_context ().remove_class ("username-other"); - // username.val.get_style_context ().remove_class ("username-root"); - // } else { - // username.val.get_style_context ().add_class ("username-other"); - // username.val.get_style_context ().remove_class ("username-root"); - // username.val.get_style_context ().remove_class ("username-current"); - // } - - // username.set_text (process.username); - // num_threads.set_text (process.stat.num_threads.to_string ()); - // state.set_text (process.stat.state); - // state.tooltip_text = set_state_tooltip (); - // num_threads.set_text (process.stat.num_threads.to_string ()); - // set_icon (process); - } -} diff --git a/src/Views/ContainerView/ContainerInfoView/ContainerInfoView.vala b/src/Views/ContainerView/ContainerInfoView/ContainerInfoView.vala deleted file mode 100644 index 7e38cf8f..00000000 --- a/src/Views/ContainerView/ContainerInfoView/ContainerInfoView.vala +++ /dev/null @@ -1,52 +0,0 @@ -public class Monitor.ContainerInfoView : Gtk.Grid { - - private DockerContainer _container; - public DockerContainer ? container { - get { - return _container; - } - set { - _container = value; - this.container_charts.clear_graphs (); - this.container_charts.set_charts_data (_container); - this.container_header.update (container); - } - } - - private ContainerInfoHeader container_header = new ContainerInfoHeader (); - private ContainerInfoCharts container_charts = new ContainerInfoCharts (); - - private Gtk.Label cpu_label; - private Gtk.Label ram_label; - - construct { - this.expand = false; - this.width_request = 200; - - column_spacing = 6; - row_spacing = 6; - vexpand = false; - margin = 12; - column_homogeneous = true; - row_homogeneous = false; - - cpu_label = new Gtk.Label ("CPU: " + Utils.NO_DATA); - cpu_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL); - cpu_label.halign = Gtk.Align.START; - - ram_label = new Gtk.Label ("RAM: " + Utils.NO_DATA); - ram_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL); - ram_label.halign = Gtk.Align.START; - - attach (container_header, 0, 0, 1, 1); - attach (container_charts, 0, 1, 1, 1); - } - - public void update () { - if (container != null) { - this.container_header.update (container); - this.container_charts.update (container); - } - } - -} diff --git a/src/Views/ContainerView/ContainerTreeView.vala b/src/Views/ContainerView/ContainerTreeView.vala deleted file mode 100644 index 28d77c83..00000000 --- a/src/Views/ContainerView/ContainerTreeView.vala +++ /dev/null @@ -1,212 +0,0 @@ -public class Monitor.ContainerTreeView : Gtk.TreeView { - private new ContainersTreeViewModel model; - private Gtk.TreeViewColumn name_column; - private Gtk.TreeViewColumn id_column; - private Gtk.TreeViewColumn cpu_column; - private Gtk.TreeViewColumn memory_column; - private Regex ? regex; - - public signal void container_selected (DockerContainer container); - - public ContainerTreeView (ContainersTreeViewModel model) { - this.model = model; - /* *INDENT-OFF* */ - regex = /(?i:^.*\.(xpm|png)$)/; // vala-lint=space-before-paren, - /* *INDENT-ON* */ - - this.vexpand = true; - - // setup name column - name_column = new Gtk.TreeViewColumn (); - name_column.title = _("Container Name"); - name_column.expand = true; - name_column.min_width = 250; - name_column.set_sort_column_id (ContainerColumn.NAME); - - var icon_cell = new Gtk.CellRendererPixbuf (); - name_column.pack_start (icon_cell, false); - // name_column.add_attribute (icon_cell, "icon_name", Column.ICON); - name_column.set_cell_data_func (icon_cell, icon_cell_layout); - - var name_cell = new Gtk.CellRendererText (); - name_cell.ellipsize = Pango.EllipsizeMode.END; - name_cell.set_fixed_height_from_font (1); - name_column.pack_start (name_cell, false); - name_column.add_attribute (name_cell, "text", ContainerColumn.NAME); - insert_column (name_column, -1); - - // setup cpu column - var cpu_cell = new Gtk.CellRendererText (); - cpu_cell.xalign = 0.5f; - - cpu_column = new Gtk.TreeViewColumn.with_attributes (_("CPU"), cpu_cell); - cpu_column.expand = false; - cpu_column.set_cell_data_func (cpu_cell, cpu_usage_cell_layout); - cpu_column.alignment = 0.5f; - cpu_column.set_sort_column_id (ContainerColumn.CPU); - insert_column (cpu_column, -1); - - // setup memory column - var memory_cell = new Gtk.CellRendererText (); - memory_cell.xalign = 0.5f; - - memory_column = new Gtk.TreeViewColumn.with_attributes (_("Memory"), memory_cell); - memory_column.expand = false; - memory_column.set_cell_data_func (memory_cell, memory_usage_cell_layout); - memory_column.alignment = 0.5f; - memory_column.set_sort_column_id (ContainerColumn.MEMORY); - insert_column (memory_column, -1); - - // setup ID column - var id_cell = new Gtk.CellRendererText (); - id_cell.xalign = 0.5f; - id_column = new Gtk.TreeViewColumn.with_attributes (_("ID"), id_cell); - id_column.set_cell_data_func (id_cell, id_cell_layout); - id_column.expand = false; - id_column.alignment = 0.5f; - id_column.set_sort_column_id (ContainerColumn.ID); - id_column.add_attribute (id_cell, "text", ContainerColumn.ID); - // insert_column (id_column, -1); - - // resize all of the columns - columns_autosize (); - - set_model (model); - - model.added_first_row.connect (() => { - focus_on_first_row (); - }); - - cursor_changed.connect (_cursor_changed); - // model.process_manager.updated.connect (_cursor_changed); - } - public void icon_cell_layout (Gtk.CellLayout cell_layout, Gtk.CellRenderer icon_cell, Gtk.TreeModel model, Gtk.TreeIter iter) { - Value icon_name; - model.get_value (iter, ContainerColumn.ICON, out icon_name); - string path = ((string) icon_name); - - if (regex.match (path)) { - try { - Gdk.Pixbuf icon = new Gdk.Pixbuf.from_file_at_size (path, 16, -1); - ((Gtk.CellRendererPixbuf)icon_cell).pixbuf = icon; - } catch (Error e) { - warning (e.message); - } - } else { - ((Gtk.CellRendererPixbuf)icon_cell).icon_name = path; - } - } - - public void cpu_usage_cell_layout (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel model, Gtk.TreeIter iter) { - // grab the value that was store in the model and convert it down to a usable format - Value cpu_usage_value; - model.get_value (iter, ContainerColumn.CPU, out cpu_usage_value); - double cpu_usage = cpu_usage_value.get_double (); - - // format the double into a string - if (cpu_usage < 0.0) - ((Gtk.CellRendererText)cell).text = Utils.NO_DATA; - else - ((Gtk.CellRendererText)cell).text = "%.0f%%".printf (cpu_usage); - } - - public void memory_usage_cell_layout (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel model, Gtk.TreeIter iter) { - // grab the value that was store in the model and convert it down to a usable format - Value memory_usage_value; - model.get_value (iter, ContainerColumn.MEMORY, out memory_usage_value); - int64 memory_usage = memory_usage_value.get_int64 (); - double memory_usage_double = (double) memory_usage; - string units = _("B"); - - // convert to MiB if needed - if (memory_usage_double > 1024.0) { - memory_usage_double /= 1024.0; - units = _("KiB"); - } - - // convert to GiB if needed - if (memory_usage_double > 1024.0) { - memory_usage_double /= 1024.0; - units = _("MiB"); - } - - // format the double into a string - if (memory_usage == 0) - ((Gtk.CellRendererText)cell).text = Utils.NO_DATA; - else - ((Gtk.CellRendererText)cell).text = "%.1f %s".printf (memory_usage_double, units); - } - - private void id_cell_layout (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel model, Gtk.TreeIter iter) { - Value id_value; - model.get_value (iter, ContainerColumn.ID, out id_value); - string id = id_value.get_string (); - // format the double into a string - if (id == "") { - ((Gtk.CellRendererText)cell).text = Utils.NO_DATA; - } - } - - public void focus_on_first_row () { - Gtk.TreePath tree_path = new Gtk.TreePath.from_indices (0); - this.set_cursor (tree_path, null, false); - grab_focus (); - } - - public void focus_on_child_row () { - Gtk.TreePath tree_path = new Gtk.TreePath.from_indices (0, 0); - this.set_cursor (tree_path, null, false); - grab_focus (); - } - - public int get_pid_of_selected () { - Gtk.TreeIter iter; - Gtk.TreeModel model; - int pid = 0; - var selection = this.get_selection ().get_selected_rows (out model).nth_data (0); - model.get_iter (out iter, selection); - model.get (iter, ContainerColumn.ID, out pid); - return pid; - } - - // How about GtkTreeSelection ? - - public void expanded () { - Gtk.TreeModel model; - var selection = this.get_selection ().get_selected_rows (out model).nth_data (0); - this.expand_row (selection, false); - } - - public void collapse () { - Gtk.TreeModel model; - var selection = this.get_selection ().get_selected_rows (out model).nth_data (0); - this.collapse_row (selection); - } - - // public void kill_process () { - // int pid = get_pid_of_selected (); - // model.kill_process (pid); - // } - - // public void end_process () { - // int pid = get_pid_of_selected (); - // model.end_process (pid); - // } - - // when row is selected send signal to update process_info_view - public void _cursor_changed () { - Gtk.TreeModel tree_model; - Gtk.TreeIter iter; - string id = ""; - var selection = get_selection ().get_selected_rows (out tree_model).nth_data (0); - - if (selection != null) { - tree_model.get_iter (out iter, selection); - tree_model.get (iter, ContainerColumn.ID, out id); - DockerContainer container = model.container_manager.get_container (id); - container_selected (container); - // debug ("cursor changed"); - } - } - -} diff --git a/src/Views/ContainerView/ContainerView.vala b/src/Views/ContainerView/ContainerView.vala deleted file mode 100644 index 3993f66f..00000000 --- a/src/Views/ContainerView/ContainerView.vala +++ /dev/null @@ -1,137 +0,0 @@ -public class Monitor.ContainerView : Gtk.Box { - public ContainersTreeViewModel container_treeview_model = new ContainersTreeViewModel (); - public ContainerTreeView container_treeview; - private ContainerInfoView container_info_view = new ContainerInfoView (); - - - construct { - orientation = Gtk.Orientation.VERTICAL; - hexpand = true; - - this.container_treeview = new ContainerTreeView (container_treeview_model); - this.container_treeview.container_selected.connect (set_container_container_info_view); - - } - - public ContainerView () { - - var container_tree_view_scrolled = new Gtk.ScrolledWindow (null, null); - container_tree_view_scrolled.add (container_treeview); - - var paned = new Gtk.Paned (Gtk.Orientation.HORIZONTAL); - paned.pack1 (container_tree_view_scrolled, true, false); - // paned.pack2 (container_info_view, true, false); - paned.set_position (paned.max_position); - - - add (paned); - } - - private void set_container_container_info_view (DockerContainer container) { - this.container_info_view.container = container; - } - - public void update () { - new Thread ("update-containers", () => { - container_treeview_model.container_manager.update_containers.begin (); - container_info_view.update (); - - return true; - }); - - - - // for (var i = 0; i < api_containers.length; i++) { - // var container = api_containers[i]; - - // debug("%s", container.name); - // } - } - - // private async void containers_load () throws ApiClientError { - // this.containers.clear (); - - //// grouping containers into applications - // var api_containers = yield this.api_client.list_containers (); - // string[] projects = {}; - - // for (var i = 0; i < api_containers.length; i++) { - // var container = api_containers[i]; - - // if (container.label_project == null) { - //// single container - // this.containers.add (new DockerContainer.from_docker_api_container (container)); - // } else { - //// if the container has already been processed - // if (container.label_project in projects) { - // continue; - // } - - //// create group - // var container_group = new DockerContainer (); - - // var full_config_path = Path.build_filename ( - // container.label_workdir, - // Path.get_basename (container.label_config) - // ); - - // container_group.id = full_config_path; - // container_group.name = container_group.format_name (container.label_project); - // container_group.image = ""; - // container_group.type = DockerContainerType.GROUP; - // container_group.state = DockerContainerState.UNKNOWN; - // container_group.config_path = full_config_path; - // container_group.services = new Gee.ArrayList (DockerContainer.equal); - - //// search for containers with the same project - // var is_all_running = true; - // var is_all_paused = true; - // var is_all_stopped = true; - - // for (var j = i; j < api_containers.length; j++) { - // var service = api_containers[j]; - - // if (service.label_project != null && service.label_project == container.label_project) { - // var s = new DockerContainer.from_docker_api_container (service); - // s.name = s.format_name (service.label_service); - - // is_all_running = is_all_running && s.state == DockerContainerState.RUNNING; - // is_all_paused = is_all_paused && s.state == DockerContainerState.PAUSED; - // is_all_stopped = is_all_stopped && s.state == DockerContainerState.STOPPED; - - // container_group.services.add (s); - // } - // } - - //// image - // string?[] services = {}; - - // foreach (var service in container_group.services) { - // services += service.name; - // } - - //// state - // if (is_all_running) { - // container_group.state = DockerContainerState.RUNNING; - // } - // if (is_all_paused) { - // container_group.state = DockerContainerState.PAUSED; - // } - // if (is_all_stopped) { - // container_group.state = DockerContainerState.STOPPED; - // } - - // container_group.image = string.joinv (", ", services); - - //// mark that the application has already been processed - // projects += container.label_project; - - //// saving the container to the resulting array - // this.containers.add (container_group); - // } - // } - - // this.notify_property ("containers"); - // } - -} diff --git a/src/Views/PreferencesView/PreferencesGeneralPage.vala b/src/Views/PreferencesView/PreferencesGeneralPage.vala index bdcc4553..97f8d37b 100644 --- a/src/Views/PreferencesView/PreferencesGeneralPage.vala +++ b/src/Views/PreferencesView/PreferencesGeneralPage.vala @@ -7,7 +7,6 @@ public class Monitor.PreferencesGeneralPage : Granite.SettingsPage { public Gtk.Switch background_switch; public Gtk.Switch enable_smooth_lines_switch; - public Gtk.Switch enable_containers_view_switch; private Gtk.Adjustment update_time_adjustment; @@ -57,15 +56,6 @@ update_time_scale.add_mark (4.0, Gtk.PositionType.BOTTOM, _("4s")); update_time_scale.add_mark (5.0, Gtk.PositionType.BOTTOM, _("5s")); - var enable_containers_view_label = new Gtk.Label (_("Show containers tab (requires restart):")); - enable_containers_view_label.halign = Gtk.Align.START; - - enable_containers_view_switch = new Gtk.Switch () { - state = MonitorApp.settings.get_boolean ("containers-view-state"), - halign = Gtk.Align.END, - hexpand = true - }; - var content_area = new Gtk.Grid (); content_area.column_spacing = 12; content_area.row_spacing = 12; @@ -76,8 +66,6 @@ content_area.attach (enable_smooth_lines_switch, 1, 2, 1, 1); content_area.attach (update_time_label, 0, 3, 1, 1); content_area.attach (update_time_scale, 0, 4, 1, 1); - content_area.attach (enable_containers_view_label, 0, 5, 1, 1); - content_area.attach (enable_containers_view_switch, 1, 5, 1, 1); add (content_area); @@ -93,9 +81,5 @@ MonitorApp.settings.set_int ("update-time", (int) update_time_adjustment.get_value ()); }); - enable_containers_view_switch.notify["active"].connect (() => { - MonitorApp.settings.set_boolean ("containers-view-state", enable_containers_view_switch.state); - }); - } } diff --git a/src/meson.build b/src/meson.build index 24ef83a5..ae372820 100644 --- a/src/meson.build +++ b/src/meson.build @@ -20,12 +20,6 @@ source_app_files = [ 'Views/SystemView/SystemStorageView.vala', 'Views/SystemView/SystemGPUView.vala', - 'Views/ContainerView/ContainerView.vala', - 'Views/ContainerView/ContainerTreeView.vala', - 'Views/ContainerView/ContainerInfoView/ContainerInfoView.vala', - 'Views/ContainerView/ContainerInfoView/ContainerInfoHeader.vala', - 'Views/ContainerView/ContainerInfoView/ContainerInfoCharts.vala', - # Widgets related only to ProcessInfoView 'Views/ProcessView/ProcessInfoView/Preventor.vala', 'Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala', @@ -46,7 +40,6 @@ source_app_files = [ # Models 'Models/TreeViewModel.vala', 'Models/OpenFilesTreeViewModel.vala', - 'Models/ContainersTreeViewModel.vala', # Other # 'Managers/AppManager.vala', @@ -54,9 +47,6 @@ source_app_files = [ 'Managers/Process.vala', 'Managers/ProcessStructs.vala', 'Managers/ProcessUtils.vala', - 'Managers/HttpClientAsync.vala', - 'Managers/ContainerManager.vala', - 'Managers/Container.vala', # Services 'Services/Shortcuts.vala', From f783dad33800bca2a80158a57d17579c3550f973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 02:31:51 +0200 Subject: [PATCH 029/486] Remove leftovers from the gpu_memory in Statusbar (#382) --- src/Widgets/Statusbar/Statusbar.vala | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Widgets/Statusbar/Statusbar.vala b/src/Widgets/Statusbar/Statusbar.vala index 1ccdd42a..796ea764 100644 --- a/src/Widgets/Statusbar/Statusbar.vala +++ b/src/Widgets/Statusbar/Statusbar.vala @@ -79,7 +79,6 @@ public class Monitor.Statusbar : Gtk.ActionBar { cpu_usage_label.set_text (("%d%%").printf (sysres.cpu_percentage)); memory_usage_label.set_text (("%u%%").printf (sysres.memory_percentage)); gpu_usage_label.set_text (("%d%%").printf (sysres.gpu_percentage)); - gpu_memory_usage_label.set_text (("%u%%").printf (sysres.gpu_memory_percentage)); string cpu_tooltip_text = ("%.2f %s").printf (sysres.cpu_frequency, _("GHz")); cpu_usage_label.tooltip_text = cpu_tooltip_text; @@ -87,9 +86,6 @@ public class Monitor.Statusbar : Gtk.ActionBar { string memory_tooltip_text = ("%s / %s").printf (Utils.HumanUnitFormatter.double_bytes_to_human (sysres.memory_used), Utils.HumanUnitFormatter.double_bytes_to_human (sysres.memory_total)); memory_usage_label.tooltip_text = memory_tooltip_text; - string gpu_memory_tooltip_text = ("%s / %s").printf (Utils.HumanUnitFormatter.double_bytes_to_human (sysres.gpu_memory_used), Utils.HumanUnitFormatter.double_bytes_to_human (sysres.gpu_memory_total)); - gpu_memory_usage_label.tooltip_text = gpu_memory_tooltip_text; - // The total amount of the swap is 0 when it is unavailable if (sysres.swap_total == 0) { swap_usage_label.set_text ("N/A"); From ffafc5ae776b91afd71792ffdea27c68ee133d14 Mon Sep 17 00:00:00 2001 From: Uwe S Date: Wed, 9 Oct 2024 01:29:27 +0000 Subject: [PATCH 030/486] Translated using Weblate (German) Currently translated at 93.3% (98 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/de/ --- po/de.po | 181 +++++++++++++++++++++++++++---------------------------- 1 file changed, 88 insertions(+), 93 deletions(-) diff --git a/po/de.po b/po/de.po index 902d9c5c..57e7f4b3 100644 --- a/po/de.po +++ b/po/de.po @@ -2,25 +2,24 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2024-10-08 17:21+0000\n" -"Last-Translator: anonymous \n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"Last-Translator: Uwe S \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6.2\n" -"Content-Transfer-Encoding: 8bit\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" -msgstr "Monitor" +msgstr "Überwachung" #: src/MainWindow.vala:39 -#, fuzzy msgid "Processes" -msgstr "Prozess Name" +msgstr "Prozesse" #: src/MainWindow.vala:40 msgid "System" @@ -28,7 +27,7 @@ msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Container" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -40,11 +39,11 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 msgid "N/A" -msgstr "" +msgstr "nicht vorhanden" #: src/Utils.vala:76 msgid "B" -msgstr "" +msgstr "B" #: src/Utils.vala:81 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 @@ -64,23 +63,23 @@ msgstr "GiB" #: src/Indicator/Widgets/PopoverWidget.vala:13 msgid "Show Monitor" -msgstr "Zeige Monitor" +msgstr "Monitor anzeigen" #: src/Indicator/Widgets/PopoverWidget.vala:16 msgid "Quit Monitor" -msgstr "Beende Monitor" +msgstr "Monitor beenden" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "" +msgstr "Sind Sie sicher?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" -msgstr "" +msgstr "Ja" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" -msgstr "" +msgstr "Nein" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 @@ -89,16 +88,15 @@ msgstr "PID" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" -msgstr "" +msgstr "NI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 -#, fuzzy msgid "PRI" -msgstr "PID" +msgstr "PRI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" -msgstr "" +msgstr "THR" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" @@ -131,23 +129,23 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 msgid "Opened files" -msgstr "" +msgstr "Geöffnete Dateien" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 msgid "Characters" -msgstr "" +msgstr "Zeichen" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 msgid "System calls" -msgstr "" +msgstr "Systemaufrufe" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "" +msgstr "Gelesen/geschrieben" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" -msgstr "" +msgstr "Abgebrochener Schreibvorgänge" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" @@ -159,19 +157,19 @@ msgstr "Ausgewählten Prozess beenden" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" -msgstr "Prozess abwürgen" +msgstr "Beenden des Prozesses erzwingen" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" -msgstr "Ausgewählten Prozess abwürgen" +msgstr "Beenden des ausgewählten Prozesses erzwingen" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "" +msgstr "Erzwungenes Beenden des Prozesses bestätigen?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "" +msgstr "Beenden des Prozesses bestätigen?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -179,7 +177,7 @@ msgstr "" #. setup name column #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" -msgstr "Prozess Name" +msgstr "Prozessname" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 #: src/Widgets/Statusbar/Statusbar.vala:10 @@ -195,19 +193,19 @@ msgstr "Arbeitsspeicher" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" -msgstr "" +msgstr "CPU: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format msgid "RAM: %.1f%%" -msgstr "" +msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", #: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" -msgstr "" +msgstr "Allgemein" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" @@ -215,86 +213,84 @@ msgstr "Im Hintergrund ausführen:" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "" +msgstr "Feine Linien auf CPU-Diagramm darstellen (erneuter Start erforderlich):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 msgid "Update every (requires restart):" -msgstr "" +msgstr "Aktualisieren alle (erneuter Start erforderlich):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 msgid "Show containers tab (requires restart):" -msgstr "" +msgstr "Container-Tab anzeigen (erneuter Start erforderlich):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 -#, fuzzy msgid "Show indicator in Wingpanel" -msgstr "Zeige einen Indikator:" +msgstr "Indikator im Wingpanel anzeigen" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 -#, fuzzy msgid "Indicator" -msgstr "Monitor Indikator" +msgstr "Indikator" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 msgid "Display CPU percentage" -msgstr "" +msgstr "CPU-Nutzung anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 msgid "Display CPU frequency" -msgstr "" +msgstr "CPU-Frequenz anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 msgid "Display CPU temperature" -msgstr "" +msgstr "CPU-Temperatur anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" -msgstr "" +msgstr "RAM-Belegung anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "Netzwerk-Upload anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "Netzwerk-Download anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "" +msgstr "GPU-Nutzung anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "" +msgstr "VRAM-Belegung anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "" +msgstr "GPU-Temperatur anzeigen" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "" +msgstr "Aktiviert" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" @@ -302,11 +298,11 @@ msgstr "Deaktiviert" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" -msgstr "" +msgstr "Frequenz" #: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" -msgstr "" +msgstr "Temperatur" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -317,124 +313,124 @@ msgstr "" #: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" -msgstr "" +msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 #: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" -msgstr "" +msgstr "GHz" #: src/Views/SystemView/SystemCPUView.vala:153 msgid "THREADS" -msgstr "" +msgstr "THREADS" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "Funktionen" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" -msgstr "" +msgstr "Fehler" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" -msgstr "" +msgstr "Modell:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "Familie:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" -msgstr "" +msgstr "Microcode.Ver.:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" -msgstr "" +msgstr "Bogomips:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " -msgstr "" +msgstr "L1-Instruction-Cache: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:62 msgid "L1 Data cache: " -msgstr "" +msgstr "L1-Data-Cache: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:66 msgid "L1 cache: " -msgstr "" +msgstr "L1-Cache: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:69 msgid "L2 Cache size: " -msgstr "" +msgstr "L2-Cache-Größe: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:72 msgid "L3 Cache size: " -msgstr "" +msgstr "L3-Cache-Größe: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:75 msgid "Address sizes: " -msgstr "" +msgstr "Adressgrößen: " #: src/Views/SystemView/SystemMemoryView.vala:5 msgid "Buffered" -msgstr "" +msgstr "Gepuffert" #: src/Views/SystemView/SystemMemoryView.vala:6 msgid "Cached" -msgstr "" +msgstr "Cached" #: src/Views/SystemView/SystemMemoryView.vala:7 msgid "Locked" -msgstr "" +msgstr "Gesperrt" #: src/Views/SystemView/SystemMemoryView.vala:8 msgid "Total" -msgstr "" +msgstr "Gesamt" #: src/Views/SystemView/SystemMemoryView.vala:9 msgid "Used" -msgstr "" +msgstr "Verwendet" #: src/Views/SystemView/SystemMemoryView.vala:10 msgid "Shared" -msgstr "" +msgstr "Geteilt" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" -msgstr "" +msgstr "Netzwerk" #: src/Views/SystemView/SystemNetworkView.vala:20 msgid "DOWN" -msgstr "" +msgstr "AB" #: src/Views/SystemView/SystemNetworkView.vala:24 msgid "UP" -msgstr "" +msgstr "AUF" #: src/Views/SystemView/SystemStorageView.vala:20 msgid "Storage" -msgstr "" +msgstr "Massenspeicher" #: src/Views/SystemView/SystemStorageView.vala:22 msgid "WRITE" -msgstr "" +msgstr "SCHREIBEN" #: src/Views/SystemView/SystemStorageView.vala:26 msgid "READ" -msgstr "" +msgstr "LESEN" #: src/Views/SystemView/SystemStorageView.vala:92 msgid "Not mounted" -msgstr "" +msgstr "Nicht eingehängt" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" -msgstr "" +msgstr "VRAM" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" -msgstr "" +msgstr "TEMPERATUR" #: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" @@ -442,7 +438,7 @@ msgstr "Einstellungen" #: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" -msgstr "Suche Prozess" +msgstr "Prozess suchen" #: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" @@ -450,31 +446,30 @@ msgstr "Geben Sie den zu suchenden Prozessnamen oder die PID ein" #: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" -msgstr "" +msgstr "Swap" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "CPU" +msgstr "GPU" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 #: src/Widgets/Statusbar/Statusbar.vala:38 #: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" -msgstr "Berechne…" +msgstr "Berechnen …" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" -msgstr "" +msgstr "Check on Github" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" -msgstr "" +msgstr "NUTZUNG" #~ msgid "Show system resources" #~ msgstr "Zeige Systemressourcen an" From 0b3e27e521168a787dcfc5683f0bdd66c5c8618d Mon Sep 17 00:00:00 2001 From: Italo Felipe Capasso Ballesteros Date: Tue, 8 Oct 2024 18:06:05 +0000 Subject: [PATCH 031/486] Translated using Weblate (Spanish) Currently translated at 100.0% (105 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/es/ --- po/es.po | 184 +++++++++++++++++++++++++++---------------------------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/po/es.po b/po/es.po index 7837c80e..571de562 100644 --- a/po/es.po +++ b/po/es.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2024-10-08 17:21+0000\n" -"Last-Translator: anonymous \n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"Last-Translator: Italo Felipe Capasso Ballesteros \n" "Language-Team: Spanish \n" "Language: es\n" @@ -25,9 +25,8 @@ msgid "Monitor" msgstr "Monitor" #: src/MainWindow.vala:39 -#, fuzzy msgid "Processes" -msgstr "Nombre del proceso" +msgstr "Procesos" #: src/MainWindow.vala:40 msgid "System" @@ -35,7 +34,7 @@ msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Contenedores" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -47,11 +46,11 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 msgid "N/A" -msgstr "" +msgstr "N/A" #: src/Utils.vala:76 msgid "B" -msgstr "" +msgstr "B" #: src/Utils.vala:81 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 @@ -79,15 +78,15 @@ msgstr "Cerrar Monitor" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "" +msgstr "¿Está seguro que dese hacer esto?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" -msgstr "" +msgstr "Si" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" -msgstr "" +msgstr "No" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 @@ -96,89 +95,93 @@ msgstr "PID" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" -msgstr "" +msgstr "NI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 -#, fuzzy msgid "PRI" -msgstr "PID" +msgstr "PRI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" -msgstr "" +msgstr "THR" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" msgstr "" +"La aplicación está esperando por una suspensión de disco imposible de " +"interrumpir" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" -msgstr "" +msgstr "Hilo de ejecución del núcleo inactivo" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" -msgstr "" +msgstr "El proceso está ejecutándose o se puede ejecutar (en hilo de ejecución)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" +"El proceso está en una espera imposible de interrumpir. Esperando a que un " +"evento finalice" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" -msgstr "" +msgstr "El proceso se detuvo por una señal de control de procesos" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" -msgstr "" +msgstr "El proceso se detuvo por una señal de un depurador" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" +"La aplicación ha finalizado, pero no ha sido recuperada por su proceso origen" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 msgid "Opened files" -msgstr "" +msgstr "Archivos abiertos" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 msgid "Characters" -msgstr "" +msgstr "Caracteres" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 msgid "System calls" -msgstr "" +msgstr "Llamadas al sistema" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "" +msgstr "Lectura/escritura" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" -msgstr "" +msgstr "Escritura cancelada" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" -msgstr "Terminar proceso" +msgstr "Finalizar proceso" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" -msgstr "Terminar proceso" +msgstr "Finaliza el proceso seleccionado" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" -msgstr "Matar proceso" +msgstr "Terminar proceso" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" -msgstr "Matar los procesos seleccionados" +msgstr "Termina el proceso seleccionado" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "" +msgstr "¿Desea terminar el proceso?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "" +msgstr "¿Desea finalizar el proceso?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -202,19 +205,19 @@ msgstr "Memoria" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" -msgstr "" +msgstr "CPU: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format msgid "RAM: %.1f%%" -msgstr "" +msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", #: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" -msgstr "" +msgstr "General" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Start in background:" @@ -222,86 +225,84 @@ msgstr "Arrancar en segundo plano:" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "" +msgstr "Dibujar líneas suaves en diagrama de CPU (requiere reiniciar):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 msgid "Update every (requires restart):" -msgstr "" +msgstr "Actualizar cada (requiere reiniciar):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 msgid "Show containers tab (requires restart):" -msgstr "" +msgstr "Mostrar pestaña de contenedores (requiere reiniciar):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 -#, fuzzy msgid "Show indicator in Wingpanel" -msgstr "Mostrar un icono en el panel:" +msgstr "Mostrar indicador en el Panel superior" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 -#, fuzzy msgid "Indicator" -msgstr "Icono de monitorización" +msgstr "Indicador" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 msgid "Display CPU percentage" -msgstr "" +msgstr "Mostrar porcentaje de CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 msgid "Display CPU frequency" -msgstr "" +msgstr "Mostrar frecuencia del CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 msgid "Display CPU temperature" -msgstr "" +msgstr "Mostrar temperatura del CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" -msgstr "" +msgstr "Mostrar porcentaje de la RAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "Mostrar velocidad de carga de la red" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "Mostrar velocidad de descarga de la red" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "" +msgstr "Mostrar porcentaje de la GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "" +msgstr "Mostrar porcentaje de la VRAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "" +msgstr "Mostrar temperatura de la GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "" +msgstr "Activado" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" @@ -309,11 +310,11 @@ msgstr "Desactivado" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" -msgstr "" +msgstr "Frecuencia" #: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" -msgstr "" +msgstr "Temperatura" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -324,124 +325,124 @@ msgstr "" #: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" -msgstr "" +msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 #: src/Widgets/Statusbar/Statusbar.vala:84 msgid "GHz" -msgstr "" +msgstr "GHz" #: src/Views/SystemView/SystemCPUView.vala:153 msgid "THREADS" -msgstr "" +msgstr "HILOS" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "Características" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" -msgstr "" +msgstr "Errores" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" -msgstr "" +msgstr "Modelo:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "Familia:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" -msgstr "" +msgstr "Versión del microcódigo:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" -msgstr "" +msgstr "BogoMIPS:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " -msgstr "" +msgstr "Caché de instrucciones L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:62 msgid "L1 Data cache: " -msgstr "" +msgstr "Caché de datos L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:66 msgid "L1 cache: " -msgstr "" +msgstr "Caché L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:69 msgid "L2 Cache size: " -msgstr "" +msgstr "Tamaño del caché L2: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:72 msgid "L3 Cache size: " -msgstr "" +msgstr "Tamaño del caché L3: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:75 msgid "Address sizes: " -msgstr "" +msgstr "Tamaño de las direcciones: " #: src/Views/SystemView/SystemMemoryView.vala:5 msgid "Buffered" -msgstr "" +msgstr "En búfer" #: src/Views/SystemView/SystemMemoryView.vala:6 msgid "Cached" -msgstr "" +msgstr "En caché" #: src/Views/SystemView/SystemMemoryView.vala:7 msgid "Locked" -msgstr "" +msgstr "Protegida" #: src/Views/SystemView/SystemMemoryView.vala:8 msgid "Total" -msgstr "" +msgstr "Total" #: src/Views/SystemView/SystemMemoryView.vala:9 msgid "Used" -msgstr "" +msgstr "Usada" #: src/Views/SystemView/SystemMemoryView.vala:10 msgid "Shared" -msgstr "" +msgstr "Compartida" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" -msgstr "" +msgstr "Red" #: src/Views/SystemView/SystemNetworkView.vala:20 msgid "DOWN" -msgstr "" +msgstr "RECIBIDO" #: src/Views/SystemView/SystemNetworkView.vala:24 msgid "UP" -msgstr "" +msgstr "ENVIADO" #: src/Views/SystemView/SystemStorageView.vala:20 msgid "Storage" -msgstr "" +msgstr "Almacenamiento" #: src/Views/SystemView/SystemStorageView.vala:22 msgid "WRITE" -msgstr "" +msgstr "ESCRITO" #: src/Views/SystemView/SystemStorageView.vala:26 msgid "READ" -msgstr "" +msgstr "LEÍDO" #: src/Views/SystemView/SystemStorageView.vala:92 msgid "Not mounted" -msgstr "" +msgstr "No montado" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" -msgstr "" +msgstr "VRAM" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" -msgstr "" +msgstr "TEMPERATURA" #: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" @@ -457,12 +458,11 @@ msgstr "Introduce el nombre del proceso o el PID" #: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" -msgstr "" +msgstr "Intercambio" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "CPU" +msgstr "GPU" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 @@ -473,15 +473,15 @@ msgstr "Calculando…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" -msgstr "" +msgstr "Ver en Github" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" -msgstr "" +msgstr "UTILIZACIÓN" #~ msgid "Show system resources" #~ msgstr "Mostrar recursos del sistema" From 95c8ffd60e65209557db53ff56eebea8e7ffd064 Mon Sep 17 00:00:00 2001 From: Hugo Carvalho Date: Tue, 8 Oct 2024 17:36:13 +0000 Subject: [PATCH 032/486] Translated using Weblate (Portuguese) Currently translated at 100.0% (105 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/pt/ --- po/pt.po | 56 ++++++++++++++++++++++++-------------------------------- 1 file changed, 24 insertions(+), 32 deletions(-) diff --git a/po/pt.po b/po/pt.po index 64654cbd..120a8b20 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: Monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2022-08-07 22:21+0100\n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: Hugo Carvalho \n" -"Language-Team: \n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -33,7 +34,7 @@ msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Contentores" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -225,34 +226,32 @@ msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 -#, fuzzy msgid "Update every (requires restart):" -msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" +msgstr "Atualizar a cada (requer reinício):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -#, fuzzy msgid "Show containers tab (requires restart):" -msgstr "Desenhar linhas suaves no gráfico da CPU (requer reinício):" +msgstr "Mostrar separador de contentores (requer reinício):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" @@ -268,14 +267,12 @@ msgid "Display CPU percentage" msgstr "Mostrar percentagem da CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -#, fuzzy msgid "Display CPU frequency" -msgstr "Mostrar percentagem da CPU" +msgstr "Mostrar frequência da CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 -#, fuzzy msgid "Display CPU temperature" -msgstr "Mostrar temperatura" +msgstr "Mostrar temperatura da CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" @@ -290,19 +287,16 @@ msgid "Display network download" msgstr "Mostrar recepção de rede" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 -#, fuzzy msgid "Display GPU percentage" -msgstr "Mostrar percentagem da CPU" +msgstr "Mostrar percentagem da GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 -#, fuzzy msgid "Display VRAM percentage" -msgstr "Mostrar percentagem da RAM" +msgstr "Mostrar percentagem da VRAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 -#, fuzzy msgid "Display GPU temperature" -msgstr "Mostrar temperatura" +msgstr "Mostrar temperatura da GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" @@ -337,9 +331,8 @@ msgid "GHz" msgstr "GHz" #: src/Views/SystemView/SystemCPUView.vala:153 -#, fuzzy msgid "THREADS" -msgstr "LER" +msgstr "THREADS" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" @@ -367,15 +360,15 @@ msgstr "Bogomips:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " -msgstr "Cache de instruções L1:" +msgstr "Cache de instruções L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:62 msgid "L1 Data cache: " -msgstr "Cache de dados L1:" +msgstr "Cache de dados L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:66 msgid "L1 cache: " -msgstr "Cache L1:" +msgstr "Cache L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:69 msgid "L2 Cache size: " @@ -466,9 +459,8 @@ msgid "Swap" msgstr "Swap" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "CPU" +msgstr "GPU" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 @@ -479,7 +471,7 @@ msgstr "A calcular…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" From e44c3492ef73bf2d62b67217ef3549f8130384ed Mon Sep 17 00:00:00 2001 From: Ihor Hordiichuk Date: Wed, 9 Oct 2024 02:25:35 +0000 Subject: [PATCH 033/486] Translated using Weblate (Ukrainian) Currently translated at 100.0% (105 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/uk/ --- po/uk.po | 96 ++++++++++++++++++++++++-------------------------------- 1 file changed, 41 insertions(+), 55 deletions(-) diff --git a/po/uk.po b/po/uk.po index c14dc37b..8d013ed3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,16 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2022-07-17 21:36+0200\n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: Ihor Hordiichuk \n" -"Language-Team: \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" -"X-Generator: Poedit 3.1\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -33,7 +34,7 @@ msgstr "Система" #: src/MainWindow.vala:43 msgid "Containers" -msgstr "" +msgstr "Контейнери" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -222,39 +223,36 @@ msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 -#, fuzzy msgid "Update every (requires restart):" -msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" +msgstr "Частота оновлення (потрібен перезапуск):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "" +msgstr "1с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "" +msgstr "2с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "" +msgstr "3с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "" +msgstr "4с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "" +msgstr "5с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -#, fuzzy msgid "Show containers tab (requires restart):" -msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" +msgstr "Показувати вкладку контейнерів (потрібен перезапуск):" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 -#, fuzzy msgid "Show indicator in Wingpanel" -msgstr "Показати індикатор:" +msgstr "Показати індикатор на Wingpanel" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 @@ -266,14 +264,12 @@ msgid "Display CPU percentage" msgstr "Показати відсоток ЦП" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 -#, fuzzy msgid "Display CPU frequency" -msgstr "Показати відсоток ЦП" +msgstr "Показати частоту ЦП" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 -#, fuzzy msgid "Display CPU temperature" -msgstr "Відображення температури" +msgstr "Показати температуру ЦП" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" @@ -281,26 +277,23 @@ msgstr "Показати відсоток оперативної пам'яті" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "Показати вивантаження до мережі" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "Показати завантаження з мережі" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 -#, fuzzy msgid "Display GPU percentage" -msgstr "Показати відсоток ЦП" +msgstr "Показати відсоток GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 -#, fuzzy msgid "Display VRAM percentage" -msgstr "Показати відсоток оперативної пам'яті" +msgstr "Показати відсоток VRAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 -#, fuzzy msgid "Display GPU temperature" -msgstr "Відображення температури" +msgstr "Показати температуру GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" @@ -336,15 +329,15 @@ msgstr "ГГц" #: src/Views/SystemView/SystemCPUView.vala:153 msgid "THREADS" -msgstr "" +msgstr "ПОТОКИ" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "Функції" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" -msgstr "" +msgstr "Вади" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" @@ -352,7 +345,7 @@ msgstr "Модель:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "Родина:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" @@ -360,7 +353,7 @@ msgstr "Версія мікрокоду:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" -msgstr "Богоміпи: " +msgstr "Bogomips:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " @@ -387,34 +380,28 @@ msgid "Address sizes: " msgstr "Адресні розміри: " #: src/Views/SystemView/SystemMemoryView.vala:5 -#, fuzzy msgid "Buffered" -msgstr "Буферизовано: " +msgstr "Буферизовано" #: src/Views/SystemView/SystemMemoryView.vala:6 -#, fuzzy msgid "Cached" -msgstr "Кешовано: " +msgstr "Кешовано" #: src/Views/SystemView/SystemMemoryView.vala:7 -#, fuzzy msgid "Locked" -msgstr "Заблоковано: " +msgstr "Заблоковано" #: src/Views/SystemView/SystemMemoryView.vala:8 -#, fuzzy msgid "Total" -msgstr "Загалом: " +msgstr "Усього" #: src/Views/SystemView/SystemMemoryView.vala:9 -#, fuzzy msgid "Used" -msgstr "Використано: " +msgstr "Використано" #: src/Views/SystemView/SystemMemoryView.vala:10 -#, fuzzy msgid "Shared" -msgstr "Спільний: " +msgstr "Спільне" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" @@ -422,23 +409,23 @@ msgstr "Мережа" #: src/Views/SystemView/SystemNetworkView.vala:20 msgid "DOWN" -msgstr "" +msgstr "УНИЗ" #: src/Views/SystemView/SystemNetworkView.vala:24 msgid "UP" -msgstr "" +msgstr "УГОРУ" #: src/Views/SystemView/SystemStorageView.vala:20 msgid "Storage" -msgstr "" +msgstr "Сховище" #: src/Views/SystemView/SystemStorageView.vala:22 msgid "WRITE" -msgstr "" +msgstr "ЗАПИС" #: src/Views/SystemView/SystemStorageView.vala:26 msgid "READ" -msgstr "" +msgstr "ЧИТАННЯ" #: src/Views/SystemView/SystemStorageView.vala:92 msgid "Not mounted" @@ -446,7 +433,7 @@ msgstr "Не змонтовано" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" -msgstr "" +msgstr "VRAM" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" @@ -469,9 +456,8 @@ msgid "Swap" msgstr "Swap" #: src/Widgets/Statusbar/Statusbar.vala:22 -#, fuzzy msgid "GPU" -msgstr "Процесор" +msgstr "Графічний процесор (GPU)" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 @@ -482,7 +468,7 @@ msgstr "Обчислення…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" From a621ef777ead83efff56ffbfaa0b972783b9123c Mon Sep 17 00:00:00 2001 From: Uwe S Date: Wed, 9 Oct 2024 01:48:46 +0000 Subject: [PATCH 034/486] Translated using Weblate (German) Currently translated at 100.0% (8 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/de/ --- po/extra/de.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/extra/de.po b/po/extra/de.po index 67672d2e..52a7f97c 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -8,19 +8,21 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: 2018-10-20 22:25+0900\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"Last-Translator: Uwe S \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "Monitor" +msgstr "Überwachung" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 4fd7dd39b0f53f9fc052ac568cb20897cf2c57dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=83=D0=B1=D0=B8=D0=BA=20=D0=BA=D1=80=D1=83=D0=B3?= =?UTF-8?q?=D0=BB=D1=8B=D0=B9?= Date: Wed, 9 Oct 2024 08:47:58 +0000 Subject: [PATCH 035/486] Translated using Weblate (Russian) Currently translated at 100.0% (8 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ru/ --- po/extra/ru.po | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/po/extra/ru.po b/po/extra/ru.po index 4a161264..3e4bd814 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -8,16 +8,17 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: 2019-02-04 12:33+0400\n" -"Last-Translator: Andrey Kultyapov \n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"Last-Translator: кубик круглый \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 2.0.6\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 @@ -52,4 +53,6 @@ msgstr "com.github.stsdc.monitor" #: data/com.github.stsdc.monitor.desktop.in:14 msgid "System monitor;System usage;Task manager;" -msgstr "System monitor;System usage;Task manager;" +msgstr "" +"System monitor;System usage;Task manager;Системный монитор;Использование " +"системных ресурсов;Диспетчер задач;" From cd1d72b82336be88ad3767f3fc97db9925c260dc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:04 +0000 Subject: [PATCH 036/486] Added translation using Weblate (Swedish) --- po/extra/sv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sv.po diff --git a/po/extra/sv.po b/po/extra/sv.po new file mode 100644 index 00000000..9338c86e --- /dev/null +++ b/po/extra/sv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 00fba7e276163d519ff6c416756f0c65e23a43dc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:04 +0000 Subject: [PATCH 037/486] Added translation using Weblate (Greenlandic) --- po/extra/kl.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kl.po diff --git a/po/extra/kl.po b/po/extra/kl.po new file mode 100644 index 00000000..cddad260 --- /dev/null +++ b/po/extra/kl.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0af0f0173f3561fe07daaf0010f2c00b38b18e36 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:05 +0000 Subject: [PATCH 038/486] Added translation using Weblate (Bengali) --- po/extra/bn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bn.po diff --git a/po/extra/bn.po b/po/extra/bn.po new file mode 100644 index 00000000..6e1965fe --- /dev/null +++ b/po/extra/bn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6e0fa88e016bfc64cfaf94fb6a91d42a9cbd3459 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:05 +0000 Subject: [PATCH 039/486] Added translation using Weblate (Tamil) --- po/extra/ta.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ta.po diff --git a/po/extra/ta.po b/po/extra/ta.po new file mode 100644 index 00000000..c77231d5 --- /dev/null +++ b/po/extra/ta.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9c20de5e451df67ee27d51dd999245d37c39f66b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:05 +0000 Subject: [PATCH 040/486] Added translation using Weblate (Uzbek) --- po/extra/uz.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/uz.po diff --git a/po/extra/uz.po b/po/extra/uz.po new file mode 100644 index 00000000..b167d4dd --- /dev/null +++ b/po/extra/uz.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9e4d7afd12ea585dda7a22e2d7981a9c1025c80f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:06 +0000 Subject: [PATCH 041/486] Added translation using Weblate (Bulgarian) --- po/extra/bg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bg.po diff --git a/po/extra/bg.po b/po/extra/bg.po new file mode 100644 index 00000000..b47f3bb3 --- /dev/null +++ b/po/extra/bg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 386113b5e5eb3ba17ae6aa4c47e5f7cefe4fab3c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:06 +0000 Subject: [PATCH 042/486] Added translation using Weblate (Esperanto) --- po/extra/eo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/eo.po diff --git a/po/extra/eo.po b/po/extra/eo.po new file mode 100644 index 00000000..4d2ca1b9 --- /dev/null +++ b/po/extra/eo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 783aa6deac7ccb716a6c0bdec500eca037f44c97 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:06 +0000 Subject: [PATCH 043/486] Added translation using Weblate (Malayalam) --- po/extra/ml.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ml.po diff --git a/po/extra/ml.po b/po/extra/ml.po new file mode 100644 index 00000000..1503d5f0 --- /dev/null +++ b/po/extra/ml.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ml\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b486fc1a10d41df4dc2119a8f2a3582c85cf5bd9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:07 +0000 Subject: [PATCH 044/486] Added translation using Weblate (Slovak) --- po/extra/sk.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sk.po diff --git a/po/extra/sk.po b/po/extra/sk.po new file mode 100644 index 00000000..29598dfd --- /dev/null +++ b/po/extra/sk.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 92125fba1ae26550dddb1e6e6a78076d756df9c8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:07 +0000 Subject: [PATCH 045/486] Added translation using Weblate (Telugu) --- po/extra/te.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/te.po diff --git a/po/extra/te.po b/po/extra/te.po new file mode 100644 index 00000000..53aed17f --- /dev/null +++ b/po/extra/te.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d9cbdf47cf435114774fe6074e1dff028b8d4ec1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:07 +0000 Subject: [PATCH 046/486] Added translation using Weblate (Tatar) --- po/extra/tt.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tt.po diff --git a/po/extra/tt.po b/po/extra/tt.po new file mode 100644 index 00000000..92c0331d --- /dev/null +++ b/po/extra/tt.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 42c4081699c37fb1603ab484590fe8dd1f223ba9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:07 +0000 Subject: [PATCH 047/486] Added translation using Weblate (Sanskrit) --- po/extra/sa.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sa.po diff --git a/po/extra/sa.po b/po/extra/sa.po new file mode 100644 index 00000000..c8c70845 --- /dev/null +++ b/po/extra/sa.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a7d696ef398203c7015a7dba047cacfce1e3162c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:08 +0000 Subject: [PATCH 048/486] Added translation using Weblate (Armenian) --- po/extra/hy.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/hy.po diff --git a/po/extra/hy.po b/po/extra/hy.po new file mode 100644 index 00000000..ae0ee5f9 --- /dev/null +++ b/po/extra/hy.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 102e874aeb00c65267bf6f4bccf996efe689a5e2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:08 +0000 Subject: [PATCH 049/486] Added translation using Weblate (Hausa) --- po/extra/ha.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ha.po diff --git a/po/extra/ha.po b/po/extra/ha.po new file mode 100644 index 00000000..efe062ac --- /dev/null +++ b/po/extra/ha.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ha\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 4a7433afb7be155f83c1ef6bb1f5b59949c58f0f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:08 +0000 Subject: [PATCH 050/486] Added translation using Weblate (Catalan) --- po/extra/ca.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ca.po diff --git a/po/extra/ca.po b/po/extra/ca.po new file mode 100644 index 00000000..5a6672ea --- /dev/null +++ b/po/extra/ca.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7f1c3218cbb395d93808f60646d2bd0ae28500c7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:09 +0000 Subject: [PATCH 051/486] Added translation using Weblate (Javanese) --- po/extra/jv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/jv.po diff --git a/po/extra/jv.po b/po/extra/jv.po new file mode 100644 index 00000000..8264684e --- /dev/null +++ b/po/extra/jv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: jv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 728ca61ee0555eb2481e650abfbe6cbce16f227a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:09 +0000 Subject: [PATCH 052/486] Added translation using Weblate (Gujarati) --- po/extra/gu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/gu.po diff --git a/po/extra/gu.po b/po/extra/gu.po new file mode 100644 index 00000000..c022985b --- /dev/null +++ b/po/extra/gu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d2e2abaf69d4aa225d04a5e97d63685a1a1f49ab Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:09 +0000 Subject: [PATCH 053/486] Added translation using Weblate (Hindi) --- po/extra/hi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/hi.po diff --git a/po/extra/hi.po b/po/extra/hi.po new file mode 100644 index 00000000..e4c14884 --- /dev/null +++ b/po/extra/hi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a46a9d2b2327bead38eba13d5bfd290936d02fb2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:09 +0000 Subject: [PATCH 054/486] Added translation using Weblate (Greek) --- po/extra/el.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/el.po diff --git a/po/extra/el.po b/po/extra/el.po new file mode 100644 index 00000000..9771011c --- /dev/null +++ b/po/extra/el.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c7c585a9657bef5e3762717addf30dc81a1b95de Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:10 +0000 Subject: [PATCH 055/486] Added translation using Weblate (Finnish) --- po/extra/fi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fi.po diff --git a/po/extra/fi.po b/po/extra/fi.po new file mode 100644 index 00000000..f7a1e287 --- /dev/null +++ b/po/extra/fi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b68e0784360587aded75f30ad622230e1166677f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:10 +0000 Subject: [PATCH 056/486] Added translation using Weblate (Portuguese (Brazil)) --- po/extra/pt_BR.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/pt_BR.po diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po new file mode 100644 index 00000000..4c824a78 --- /dev/null +++ b/po/extra/pt_BR.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f97b5e065437e2cb11bd75e1966065077795e3b1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:10 +0000 Subject: [PATCH 057/486] Added translation using Weblate (Aymara) --- po/extra/ay.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ay.po diff --git a/po/extra/ay.po b/po/extra/ay.po new file mode 100644 index 00000000..e5d275c6 --- /dev/null +++ b/po/extra/ay.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ay\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a9c2c327936b038c7bfab8645a02b6aad8067e5d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:11 +0000 Subject: [PATCH 058/486] Added translation using Weblate (Norwegian Nynorsk) --- po/extra/nn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/nn.po diff --git a/po/extra/nn.po b/po/extra/nn.po new file mode 100644 index 00000000..547d8feb --- /dev/null +++ b/po/extra/nn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 37cf6ca93dd0f7982a049f7781ebe8000e4d3541 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:11 +0000 Subject: [PATCH 059/486] Added translation using Weblate (Pashto) --- po/extra/ps.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ps.po diff --git a/po/extra/ps.po b/po/extra/ps.po new file mode 100644 index 00000000..c6069c7d --- /dev/null +++ b/po/extra/ps.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ps\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 4bddc99d2e34a762cf683192163e78b9d687f0c0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:11 +0000 Subject: [PATCH 060/486] Added translation using Weblate (Uyghur) --- po/extra/ug.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ug.po diff --git a/po/extra/ug.po b/po/extra/ug.po new file mode 100644 index 00000000..1f6f178b --- /dev/null +++ b/po/extra/ug.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ug\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f3a9be8810f1cf0c7e50462f3069bafda63a9fe7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:11 +0000 Subject: [PATCH 061/486] Added translation using Weblate (Urdu) --- po/extra/ur.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ur.po diff --git a/po/extra/ur.po b/po/extra/ur.po new file mode 100644 index 00000000..9e568928 --- /dev/null +++ b/po/extra/ur.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b593ba2532132b77375255b421dfe8834420ccda Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:12 +0000 Subject: [PATCH 062/486] Added translation using Weblate (Sami (Northern)) --- po/extra/se.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/se.po diff --git a/po/extra/se.po b/po/extra/se.po new file mode 100644 index 00000000..0c920913 --- /dev/null +++ b/po/extra/se.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From e03851558aac4b4557e3b8e8d80258d4089fafb5 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:12 +0000 Subject: [PATCH 063/486] Added translation using Weblate (Persian) --- po/extra/fa.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fa.po diff --git a/po/extra/fa.po b/po/extra/fa.po new file mode 100644 index 00000000..f792c80f --- /dev/null +++ b/po/extra/fa.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From db0bc61ae6c69aef155df9d90f26ef4fe33caf0b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:12 +0000 Subject: [PATCH 064/486] Added translation using Weblate (English (United Kingdom)) --- po/extra/en_GB.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/en_GB.po diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po new file mode 100644 index 00000000..8bd7ef9e --- /dev/null +++ b/po/extra/en_GB.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7bb0ebc8245f05a47d99d578647554b9779f93a1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:12 +0000 Subject: [PATCH 065/486] Added translation using Weblate (Icelandic) --- po/extra/is.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/is.po diff --git a/po/extra/is.po b/po/extra/is.po new file mode 100644 index 00000000..7f36ed32 --- /dev/null +++ b/po/extra/is.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 30ebd2e635a94aa4b7e956bd5ba098fc0876a600 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:13 +0000 Subject: [PATCH 066/486] Added translation using Weblate (Gaelic) --- po/extra/gd.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/gd.po diff --git a/po/extra/gd.po b/po/extra/gd.po new file mode 100644 index 00000000..b8da69e1 --- /dev/null +++ b/po/extra/gd.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 839a7c3d103404b3f6e354d06300c5d901cf73c3 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:13 +0000 Subject: [PATCH 067/486] Added translation using Weblate (Maori) --- po/extra/mi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mi.po diff --git a/po/extra/mi.po b/po/extra/mi.po new file mode 100644 index 00000000..d4681fb9 --- /dev/null +++ b/po/extra/mi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a722485808fc400a0e40cb7cc2a0b78d246d6d0c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:13 +0000 Subject: [PATCH 068/486] Added translation using Weblate (Breton) --- po/extra/br.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/br.po diff --git a/po/extra/br.po b/po/extra/br.po new file mode 100644 index 00000000..7a300ed9 --- /dev/null +++ b/po/extra/br.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 470f16c3e4e1eb58fc3b6f9c9500b482df93457c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:13 +0000 Subject: [PATCH 069/486] Added translation using Weblate (Luxembourgish) --- po/extra/lb.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/lb.po diff --git a/po/extra/lb.po b/po/extra/lb.po new file mode 100644 index 00000000..7e65c542 --- /dev/null +++ b/po/extra/lb.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d536c8cf583530f3e3abad1e5060dc8bf6609982 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:14 +0000 Subject: [PATCH 070/486] Added translation using Weblate (Serbian) --- po/extra/sr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sr.po diff --git a/po/extra/sr.po b/po/extra/sr.po new file mode 100644 index 00000000..40ac7296 --- /dev/null +++ b/po/extra/sr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6008eb7f7c63d942b11c4ff62de0bdaa4d5fa336 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:14 +0000 Subject: [PATCH 071/486] Added translation using Weblate (Slovenian) --- po/extra/sl.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sl.po diff --git a/po/extra/sl.po b/po/extra/sl.po new file mode 100644 index 00000000..fbf64b32 --- /dev/null +++ b/po/extra/sl.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6ec3838c01fb9f5bb8abfcb2b44138a0ac5b9a8c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:14 +0000 Subject: [PATCH 072/486] Added translation using Weblate (Sindhi) --- po/extra/sd.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sd.po diff --git a/po/extra/sd.po b/po/extra/sd.po new file mode 100644 index 00000000..ef220416 --- /dev/null +++ b/po/extra/sd.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a62e126e2058045e7d5bc2d090c2c10c7fb5063d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:15 +0000 Subject: [PATCH 073/486] Added translation using Weblate (Kyrgyz) --- po/extra/ky.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ky.po diff --git a/po/extra/ky.po b/po/extra/ky.po new file mode 100644 index 00000000..97d45c2a --- /dev/null +++ b/po/extra/ky.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 2de0b56e2505bef3a92a306e04994cc939b7be58 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:15 +0000 Subject: [PATCH 074/486] Added translation using Weblate (Valencian) --- po/extra/ca@valencia.po | 50 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ca@valencia.po diff --git a/po/extra/ca@valencia.po b/po/extra/ca@valencia.po new file mode 100644 index 00000000..681f5004 --- /dev/null +++ b/po/extra/ca@valencia.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca@valencia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b296e58af191417f8ce220b8933746cd8fad6be6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:15 +0000 Subject: [PATCH 075/486] Added translation using Weblate (Khmer (Central)) --- po/extra/km.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/km.po diff --git a/po/extra/km.po b/po/extra/km.po new file mode 100644 index 00000000..017a070f --- /dev/null +++ b/po/extra/km.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 158aa9d0222b066a1ff6c4954493c8d45ccde924 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:15 +0000 Subject: [PATCH 076/486] Added translation using Weblate (Marathi) --- po/extra/mr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mr.po diff --git a/po/extra/mr.po b/po/extra/mr.po new file mode 100644 index 00000000..6dde3516 --- /dev/null +++ b/po/extra/mr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f60bbfe2194f470d3554445965fd00f4bfcdf199 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:16 +0000 Subject: [PATCH 077/486] Added translation using Weblate (Vietnamese) --- po/extra/vi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/vi.po diff --git a/po/extra/vi.po b/po/extra/vi.po new file mode 100644 index 00000000..3679c66c --- /dev/null +++ b/po/extra/vi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 24024e2df36af77a8ab66a7ab09637e714cd442e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:16 +0000 Subject: [PATCH 078/486] Added translation using Weblate (Macedonian) --- po/extra/mk.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mk.po diff --git a/po/extra/mk.po b/po/extra/mk.po new file mode 100644 index 00000000..1afe7392 --- /dev/null +++ b/po/extra/mk.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d7ca8d461a8fbc8008767d4554e601ee1c07d7dc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:16 +0000 Subject: [PATCH 079/486] Added translation using Weblate (Punjabi) --- po/extra/pa.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/pa.po diff --git a/po/extra/pa.po b/po/extra/pa.po new file mode 100644 index 00000000..e2bf92bb --- /dev/null +++ b/po/extra/pa.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f1f015d3e3e12f11dee4c290a675218e80ec4b99 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:16 +0000 Subject: [PATCH 080/486] Added translation using Weblate (Basque) --- po/extra/eu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/eu.po diff --git a/po/extra/eu.po b/po/extra/eu.po new file mode 100644 index 00000000..a7623240 --- /dev/null +++ b/po/extra/eu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 07650af2a71cd78ba126689226bdf19e8c843b9f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:17 +0000 Subject: [PATCH 081/486] Added translation using Weblate (Estonian) --- po/extra/et.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/et.po diff --git a/po/extra/et.po b/po/extra/et.po new file mode 100644 index 00000000..08d962d1 --- /dev/null +++ b/po/extra/et.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 5ab7dbfdcb373d783e90b399121c1a009470d6ee Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:17 +0000 Subject: [PATCH 082/486] Added translation using Weblate (Arabic) --- po/extra/ar.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ar.po diff --git a/po/extra/ar.po b/po/extra/ar.po new file mode 100644 index 00000000..6a36464a --- /dev/null +++ b/po/extra/ar.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7bc5126b52fe242c56658001767df27d54a844ca Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:17 +0000 Subject: [PATCH 083/486] Added translation using Weblate (Zulu) --- po/extra/zu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/zu.po diff --git a/po/extra/zu.po b/po/extra/zu.po new file mode 100644 index 00000000..7dac0da0 --- /dev/null +++ b/po/extra/zu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 179e0048734bb0c9890e23f0c931571c6e8d9a05 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:17 +0000 Subject: [PATCH 084/486] Added translation using Weblate (Danish) --- po/extra/da.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/da.po diff --git a/po/extra/da.po b/po/extra/da.po new file mode 100644 index 00000000..20c849e0 --- /dev/null +++ b/po/extra/da.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f6d3e40672a403fe2da09a71cd4be569e9643b8c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:18 +0000 Subject: [PATCH 085/486] Added translation using Weblate (Italian) --- po/extra/it.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/it.po diff --git a/po/extra/it.po b/po/extra/it.po new file mode 100644 index 00000000..08c56379 --- /dev/null +++ b/po/extra/it.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 5ebb789519a4198792117cc2b04d1b0763a5c721 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:18 +0000 Subject: [PATCH 086/486] Added translation using Weblate (Lao) --- po/extra/lo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/lo.po diff --git a/po/extra/lo.po b/po/extra/lo.po new file mode 100644 index 00000000..a67b02b3 --- /dev/null +++ b/po/extra/lo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 73f2d08a7311c39245728e4c089640261bc73a58 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:18 +0000 Subject: [PATCH 087/486] Added translation using Weblate (Dzongkha) --- po/extra/dz.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/dz.po diff --git a/po/extra/dz.po b/po/extra/dz.po new file mode 100644 index 00000000..fad2565e --- /dev/null +++ b/po/extra/dz.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From e6dcd2960a30d4f6eaa46b6ea6520a14580307d7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:18 +0000 Subject: [PATCH 088/486] Added translation using Weblate (Silesian) --- po/extra/szl.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/szl.po diff --git a/po/extra/szl.po b/po/extra/szl.po new file mode 100644 index 00000000..70141e08 --- /dev/null +++ b/po/extra/szl.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: szl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a59ced650deaef34faa10865dd7331a06a703a93 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:19 +0000 Subject: [PATCH 089/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Norwegian=20Bokm=C3=A5l=20(nb))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/extra/nb.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/nb.po diff --git a/po/extra/nb.po b/po/extra/nb.po new file mode 100644 index 00000000..1c287b57 --- /dev/null +++ b/po/extra/nb.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7a2ba303963dae35cb3c874c612504ef76342548 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:19 +0000 Subject: [PATCH 090/486] Added translation using Weblate (Mongolian) --- po/extra/mn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mn.po diff --git a/po/extra/mn.po b/po/extra/mn.po new file mode 100644 index 00000000..1edf4d72 --- /dev/null +++ b/po/extra/mn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 70fa330068df04b4a5363095bd5f3c46ed307861 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:19 +0000 Subject: [PATCH 091/486] Added translation using Weblate (Walloon) --- po/extra/wa.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/wa.po diff --git a/po/extra/wa.po b/po/extra/wa.po new file mode 100644 index 00000000..4bdd5cf8 --- /dev/null +++ b/po/extra/wa.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 17920f9bb5ada87765d2d40ada50485c24c74bde Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:19 +0000 Subject: [PATCH 092/486] Added translation using Weblate (Hebrew) --- po/extra/he.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/he.po diff --git a/po/extra/he.po b/po/extra/he.po new file mode 100644 index 00000000..31cfb43b --- /dev/null +++ b/po/extra/he.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7361c9fd6d411c0cc1800309b62fb2c921f028ed Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:20 +0000 Subject: [PATCH 093/486] Added translation using Weblate (Georgian) --- po/extra/ka.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ka.po diff --git a/po/extra/ka.po b/po/extra/ka.po new file mode 100644 index 00000000..34b0a2df --- /dev/null +++ b/po/extra/ka.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From af223ab27f3515305deddfa0637c8a24b9732e90 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:20 +0000 Subject: [PATCH 094/486] Added translation using Weblate (Czech) --- po/extra/cs.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/cs.po diff --git a/po/extra/cs.po b/po/extra/cs.po new file mode 100644 index 00000000..3b14f4b3 --- /dev/null +++ b/po/extra/cs.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7e37e89cc5488e5fd6eb402b9bf75139322ad727 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:20 +0000 Subject: [PATCH 095/486] Added translation using Weblate (English (South Africa)) --- po/extra/en_ZA.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/en_ZA.po diff --git a/po/extra/en_ZA.po b/po/extra/en_ZA.po new file mode 100644 index 00000000..d230ab9c --- /dev/null +++ b/po/extra/en_ZA.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_ZA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 22410fb4394f076f37230cb7159a8593bfd29bdb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:21 +0000 Subject: [PATCH 096/486] Added translation using Weblate (Albanian) --- po/extra/sq.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sq.po diff --git a/po/extra/sq.po b/po/extra/sq.po new file mode 100644 index 00000000..f91336e6 --- /dev/null +++ b/po/extra/sq.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 72d1129bdb0938e779b04f925e651b6bd20a5fc2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:21 +0000 Subject: [PATCH 097/486] Added translation using Weblate (Amharic) --- po/extra/am.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/am.po diff --git a/po/extra/am.po b/po/extra/am.po new file mode 100644 index 00000000..356ea207 --- /dev/null +++ b/po/extra/am.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 438068bdcbbc48fcabae1d6ac29e420c2e262a6a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:21 +0000 Subject: [PATCH 098/486] Added translation using Weblate (Kashmiri) --- po/extra/ks.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ks.po diff --git a/po/extra/ks.po b/po/extra/ks.po new file mode 100644 index 00000000..3b31a9cf --- /dev/null +++ b/po/extra/ks.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ks\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9a352796f8cec87d7b946d717373bf52fc0bd75f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:21 +0000 Subject: [PATCH 099/486] Added translation using Weblate (Lingala) --- po/extra/ln.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ln.po diff --git a/po/extra/ln.po b/po/extra/ln.po new file mode 100644 index 00000000..5661e441 --- /dev/null +++ b/po/extra/ln.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ln\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 51184cbced9f71db4487976522f7f2ba5bfc7d9b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:22 +0000 Subject: [PATCH 100/486] Added translation using Weblate (Somali) --- po/extra/so.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/so.po diff --git a/po/extra/so.po b/po/extra/so.po new file mode 100644 index 00000000..59132a51 --- /dev/null +++ b/po/extra/so.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: so\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 378052ca8e65e9fdb7b09c0ce30174bb636df0ab Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:22 +0000 Subject: [PATCH 101/486] Added translation using Weblate (Irish) --- po/extra/ga.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ga.po diff --git a/po/extra/ga.po b/po/extra/ga.po new file mode 100644 index 00000000..a3b3655a --- /dev/null +++ b/po/extra/ga.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 1f458f83a24758e5aa41116f68159153d4b19bd9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:23 +0000 Subject: [PATCH 102/486] Added translation using Weblate (Kannada) --- po/extra/kn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kn.po diff --git a/po/extra/kn.po b/po/extra/kn.po new file mode 100644 index 00000000..67283e1c --- /dev/null +++ b/po/extra/kn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0e450675e554b4ea6647a99125dfa52b3034c927 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:23 +0000 Subject: [PATCH 103/486] Added translation using Weblate (Maltese) --- po/extra/mt.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mt.po diff --git a/po/extra/mt.po b/po/extra/mt.po new file mode 100644 index 00000000..ec599981 --- /dev/null +++ b/po/extra/mt.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 3cb50ef1c9f59c6fa5afe891cbf833606d79e40d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:23 +0000 Subject: [PATCH 104/486] Added translation using Weblate (Belarusian) --- po/extra/be.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/be.po diff --git a/po/extra/be.po b/po/extra/be.po new file mode 100644 index 00000000..090f0ae1 --- /dev/null +++ b/po/extra/be.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 68824acd01897ecfe9f4e6b524922d71440cf7f8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:24 +0000 Subject: [PATCH 105/486] Added translation using Weblate (Kazakh) --- po/extra/kk.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kk.po diff --git a/po/extra/kk.po b/po/extra/kk.po new file mode 100644 index 00000000..9672d792 --- /dev/null +++ b/po/extra/kk.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 640ee0f5ed6732bb1315c8442a1f800c62db1535 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:24 +0000 Subject: [PATCH 106/486] Added translation using Weblate (Asturian) --- po/extra/ast.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ast.po diff --git a/po/extra/ast.po b/po/extra/ast.po new file mode 100644 index 00000000..1e1a1e8f --- /dev/null +++ b/po/extra/ast.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a738dc3071c46363c2c941803eadf8913f215074 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:24 +0000 Subject: [PATCH 107/486] Added translation using Weblate (Tigrinya) --- po/extra/ti.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ti.po diff --git a/po/extra/ti.po b/po/extra/ti.po new file mode 100644 index 00000000..dbe47100 --- /dev/null +++ b/po/extra/ti.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ti\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7859addae08a7bf881a293b3ceadc1010408b9ab Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:25 +0000 Subject: [PATCH 108/486] Added translation using Weblate (Indonesian) --- po/extra/id.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/id.po diff --git a/po/extra/id.po b/po/extra/id.po new file mode 100644 index 00000000..741e12ba --- /dev/null +++ b/po/extra/id.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 654f90519f53b5911b7c481a073498d4d490a2ac Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:25 +0000 Subject: [PATCH 109/486] Added translation using Weblate (Swahili) --- po/extra/sw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sw.po diff --git a/po/extra/sw.po b/po/extra/sw.po new file mode 100644 index 00000000..c7ec2acd --- /dev/null +++ b/po/extra/sw.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From fb5aa55f25a370d051a8cf558f36413d2bb5ffa1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:25 +0000 Subject: [PATCH 110/486] Added translation using Weblate (Burmese) --- po/extra/my.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/my.po diff --git a/po/extra/my.po b/po/extra/my.po new file mode 100644 index 00000000..0f23f941 --- /dev/null +++ b/po/extra/my.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: my\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b35337bced25fe070ca499c4c9611870a3dd5782 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:26 +0000 Subject: [PATCH 111/486] Added translation using Weblate (Nepali) --- po/extra/ne.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ne.po diff --git a/po/extra/ne.po b/po/extra/ne.po new file mode 100644 index 00000000..b230b2e4 --- /dev/null +++ b/po/extra/ne.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 30e5d81687bc66cab46fe2ac5462b198d42c3440 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:26 +0000 Subject: [PATCH 112/486] Added translation using Weblate (Haitian) --- po/extra/ht.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ht.po diff --git a/po/extra/ht.po b/po/extra/ht.po new file mode 100644 index 00000000..2ce853e0 --- /dev/null +++ b/po/extra/ht.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ht\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 932467cb24c8fdd5be1c662935aefb12f7d93fda Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:26 +0000 Subject: [PATCH 113/486] Added translation using Weblate (Odia) --- po/extra/or.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/or.po diff --git a/po/extra/or.po b/po/extra/or.po new file mode 100644 index 00000000..caa0bc22 --- /dev/null +++ b/po/extra/or.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: or\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b44984005f468ab714dcc53af3872b523929f31f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:27 +0000 Subject: [PATCH 114/486] Added translation using Weblate (Croatian) --- po/extra/hr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/hr.po diff --git a/po/extra/hr.po b/po/extra/hr.po new file mode 100644 index 00000000..06fe5395 --- /dev/null +++ b/po/extra/hr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 876c0f9d1b67675fdf6f77fa105545d4bb16cd01 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:27 +0000 Subject: [PATCH 115/486] Added translation using Weblate (Malagasy) --- po/extra/mg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mg.po diff --git a/po/extra/mg.po b/po/extra/mg.po new file mode 100644 index 00000000..05009e53 --- /dev/null +++ b/po/extra/mg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From e3548cf417cc62537e0db99e51d2009e2241d4f4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:27 +0000 Subject: [PATCH 116/486] Added translation using Weblate (Fulah) --- po/extra/ff.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ff.po diff --git a/po/extra/ff.po b/po/extra/ff.po new file mode 100644 index 00000000..38a73b78 --- /dev/null +++ b/po/extra/ff.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ff\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 137819500533753d5c3f04d545658284e439726a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:28 +0000 Subject: [PATCH 117/486] Added translation using Weblate (Sotho (Southern)) --- po/extra/st.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/st.po diff --git a/po/extra/st.po b/po/extra/st.po new file mode 100644 index 00000000..4917de6f --- /dev/null +++ b/po/extra/st.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: st\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b0c6eaf60d90a474775f3777e634cbf645cfa3c6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:28 +0000 Subject: [PATCH 118/486] Added translation using Weblate (Romansh) --- po/extra/rm.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/rm.po diff --git a/po/extra/rm.po b/po/extra/rm.po new file mode 100644 index 00000000..ed00ff6b --- /dev/null +++ b/po/extra/rm.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 87d24f2951fca5c440629ee044569a31bde82094 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:28 +0000 Subject: [PATCH 119/486] Added translation using Weblate (Filipino) --- po/extra/fil.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fil.po diff --git a/po/extra/fil.po b/po/extra/fil.po new file mode 100644 index 00000000..75f0f651 --- /dev/null +++ b/po/extra/fil.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fil\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 09fad99a7aba48d491ce122ea995b7919f526aa2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:29 +0000 Subject: [PATCH 120/486] Added translation using Weblate (Kurdish) --- po/extra/ku.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ku.po diff --git a/po/extra/ku.po b/po/extra/ku.po new file mode 100644 index 00000000..75969a71 --- /dev/null +++ b/po/extra/ku.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ku\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 19269c4ff28be6705682e5b006b3857fee44cd5c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:29 +0000 Subject: [PATCH 121/486] Added translation using Weblate (Hungarian) --- po/extra/hu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/hu.po diff --git a/po/extra/hu.po b/po/extra/hu.po new file mode 100644 index 00000000..89765a62 --- /dev/null +++ b/po/extra/hu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d3b23da2034e226fa666cd4b560759ffa643fac9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:29 +0000 Subject: [PATCH 122/486] Added translation using Weblate (Sinhala) --- po/extra/si.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/si.po diff --git a/po/extra/si.po b/po/extra/si.po new file mode 100644 index 00000000..f4a9888f --- /dev/null +++ b/po/extra/si.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 2e3f53bf27d9dfc34f08a1744dc1b838e5619a21 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:29 +0000 Subject: [PATCH 123/486] Added translation using Weblate (Afrikaans) --- po/extra/af.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/af.po diff --git a/po/extra/af.po b/po/extra/af.po new file mode 100644 index 00000000..d64fafe7 --- /dev/null +++ b/po/extra/af.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 47545f00e4a84b9bb70bf46d1038f73cb03321b1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:30 +0000 Subject: [PATCH 124/486] Added translation using Weblate (Latvian) --- po/extra/lv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/lv.po diff --git a/po/extra/lv.po b/po/extra/lv.po new file mode 100644 index 00000000..adbbd7ae --- /dev/null +++ b/po/extra/lv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9efcff5a20b82893f7bcc155005694e701597a97 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:30 +0000 Subject: [PATCH 125/486] Added translation using Weblate (Yoruba) --- po/extra/yo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/yo.po diff --git a/po/extra/yo.po b/po/extra/yo.po new file mode 100644 index 00000000..19fe4dd0 --- /dev/null +++ b/po/extra/yo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 496ef8af061ac0b082a88ea155f68e97605b05f1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:30 +0000 Subject: [PATCH 126/486] Added translation using Weblate (Welsh) --- po/extra/cy.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/cy.po diff --git a/po/extra/cy.po b/po/extra/cy.po new file mode 100644 index 00000000..32a8e47a --- /dev/null +++ b/po/extra/cy.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 020c59fe2bd9c73c3b0ce9496728f7f8578f27d6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:31 +0000 Subject: [PATCH 127/486] Added translation using Weblate (Papiamento) --- po/extra/pap.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/pap.po diff --git a/po/extra/pap.po b/po/extra/pap.po new file mode 100644 index 00000000..42d868a3 --- /dev/null +++ b/po/extra/pap.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pap\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6ac7788cb56aad644c4430c473e090b1ae4ad70f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:31 +0000 Subject: [PATCH 128/486] Added translation using Weblate (Interlingua) --- po/extra/ia.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ia.po diff --git a/po/extra/ia.po b/po/extra/ia.po new file mode 100644 index 00000000..34baa4b0 --- /dev/null +++ b/po/extra/ia.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 329bf4f7b310fde9615d568283a54259957272a4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:31 +0000 Subject: [PATCH 129/486] Added translation using Weblate (Assamese) --- po/extra/as.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/as.po diff --git a/po/extra/as.po b/po/extra/as.po new file mode 100644 index 00000000..94bc4f96 --- /dev/null +++ b/po/extra/as.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: as\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 71c6cfb6f3c411a3fa7c939eeb3b1148083915ee Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:31 +0000 Subject: [PATCH 130/486] Added translation using Weblate (Akan) --- po/extra/ak.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ak.po diff --git a/po/extra/ak.po b/po/extra/ak.po new file mode 100644 index 00000000..71d36dd4 --- /dev/null +++ b/po/extra/ak.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ak\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 63f5cff7d09ed26d5202ed920a2e2f166bf1f538 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:32 +0000 Subject: [PATCH 131/486] Added translation using Weblate (Venda) --- po/extra/ve.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ve.po diff --git a/po/extra/ve.po b/po/extra/ve.po new file mode 100644 index 00000000..eccd09d2 --- /dev/null +++ b/po/extra/ve.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ve\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ce8c34ab344019c39c703e9dafadcf1dcfdd9ffb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:32 +0000 Subject: [PATCH 132/486] Added translation using Weblate (Korean) --- po/extra/ko.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ko.po diff --git a/po/extra/ko.po b/po/extra/ko.po new file mode 100644 index 00000000..1ec5a644 --- /dev/null +++ b/po/extra/ko.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 056e28bc042f7abb7896e2c9de5dc474e5cec9ef Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:32 +0000 Subject: [PATCH 133/486] Added translation using Weblate (Frisian) --- po/extra/fy.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fy.po diff --git a/po/extra/fy.po b/po/extra/fy.po new file mode 100644 index 00000000..fb15f270 --- /dev/null +++ b/po/extra/fy.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ab9e1a49a9633cb66d861c65d56bc3e296bbc65a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:33 +0000 Subject: [PATCH 134/486] Added translation using Weblate (Turkmen) --- po/extra/tk.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tk.po diff --git a/po/extra/tk.po b/po/extra/tk.po new file mode 100644 index 00000000..262d74d2 --- /dev/null +++ b/po/extra/tk.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From fde1056caceec77c9834f4999e0756a04511c8d6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:33 +0000 Subject: [PATCH 135/486] Added translation using Weblate (Turkish) --- po/extra/tr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tr.po diff --git a/po/extra/tr.po b/po/extra/tr.po new file mode 100644 index 00000000..20443936 --- /dev/null +++ b/po/extra/tr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c7fef36da75cb19e9439e9b0d2245ca8ad38bc80 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:33 +0000 Subject: [PATCH 136/486] Added translation using Weblate (Tibetan) --- po/extra/bo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bo.po diff --git a/po/extra/bo.po b/po/extra/bo.po new file mode 100644 index 00000000..55b5bbda --- /dev/null +++ b/po/extra/bo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 560c4c1bed362383724a0c60e1359630c0688262 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:33 +0000 Subject: [PATCH 137/486] Added translation using Weblate (Faroese) --- po/extra/fo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fo.po diff --git a/po/extra/fo.po b/po/extra/fo.po new file mode 100644 index 00000000..3125b3a0 --- /dev/null +++ b/po/extra/fo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 70fd4603cfb0824571e63d316671fb1abb413141 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:34 +0000 Subject: [PATCH 138/486] Added translation using Weblate (Malay) --- po/extra/ms.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ms.po diff --git a/po/extra/ms.po b/po/extra/ms.po new file mode 100644 index 00000000..aa4a8418 --- /dev/null +++ b/po/extra/ms.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8fb17104e9f71e854632a60034a0300550eaba7b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:34 +0000 Subject: [PATCH 139/486] Added translation using Weblate (Tajik) --- po/extra/tg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tg.po diff --git a/po/extra/tg.po b/po/extra/tg.po new file mode 100644 index 00000000..586e5d84 --- /dev/null +++ b/po/extra/tg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 2de64432c1640bcef4b49b20db32f539cb0ef592 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:34 +0000 Subject: [PATCH 140/486] Added translation using Weblate (Occitan) --- po/extra/oc.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/oc.po diff --git a/po/extra/oc.po b/po/extra/oc.po new file mode 100644 index 00000000..66bd1d59 --- /dev/null +++ b/po/extra/oc.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 02cbc1bbc9ccc553e18ee9ac99141b9621c5e0f2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:34 +0000 Subject: [PATCH 141/486] Added translation using Weblate (Thai) --- po/extra/th.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/th.po diff --git a/po/extra/th.po b/po/extra/th.po new file mode 100644 index 00000000..700a36e7 --- /dev/null +++ b/po/extra/th.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 2394809cf1a49c07b90c088d9da5f6353fc2a961 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:35 +0000 Subject: [PATCH 142/486] Added translation using Weblate (Bosnian) --- po/extra/bs.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bs.po diff --git a/po/extra/bs.po b/po/extra/bs.po new file mode 100644 index 00000000..81a49944 --- /dev/null +++ b/po/extra/bs.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a64ba6d7c75b1e5a0b1b997db16fca341ef76522 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:35 +0000 Subject: [PATCH 143/486] Added translation using Weblate (Cornish) --- po/extra/kw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kw.po diff --git a/po/extra/kw.po b/po/extra/kw.po new file mode 100644 index 00000000..941bcf5c --- /dev/null +++ b/po/extra/kw.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6fc46968a6a3c72437ab36109f29f50442d004f8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:35 +0000 Subject: [PATCH 144/486] Added translation using Weblate (Kinyarwanda) --- po/extra/rw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/rw.po diff --git a/po/extra/rw.po b/po/extra/rw.po new file mode 100644 index 00000000..398a6465 --- /dev/null +++ b/po/extra/rw.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From b552852d30c2ac54ef6576579da824a6442e022f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:35 +0000 Subject: [PATCH 145/486] Added translation using Weblate (Wolof) --- po/extra/wo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/wo.po diff --git a/po/extra/wo.po b/po/extra/wo.po new file mode 100644 index 00000000..39095bc3 --- /dev/null +++ b/po/extra/wo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 5959b5e250bee67560e7f478fa9f56cafff8bd7d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:36 +0000 Subject: [PATCH 146/486] Added translation using Weblate (Galician) --- po/extra/gl.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/gl.po diff --git a/po/extra/gl.po b/po/extra/gl.po new file mode 100644 index 00000000..d28f4308 --- /dev/null +++ b/po/extra/gl.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From cf018e77577658b0b51a03f6b0bef4fe5448c165 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:36 +0000 Subject: [PATCH 147/486] Added translation using Weblate (Azerbaijani) --- po/extra/az.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/az.po diff --git a/po/extra/az.po b/po/extra/az.po new file mode 100644 index 00000000..6f498fe1 --- /dev/null +++ b/po/extra/az.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 73925dde8368764abdb97324002477034a1a4df8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:36 +0000 Subject: [PATCH 148/486] Added translation using Weblate (Sundanese) --- po/extra/su.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/su.po diff --git a/po/extra/su.po b/po/extra/su.po new file mode 100644 index 00000000..aab250c9 --- /dev/null +++ b/po/extra/su.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: su\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 65f4b818181eb871e9ac2a7b60f9245fc0eeafb7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:36 +0000 Subject: [PATCH 149/486] Added translation using Weblate (Limburgish) --- po/extra/li.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/li.po diff --git a/po/extra/li.po b/po/extra/li.po new file mode 100644 index 00000000..677a6edc --- /dev/null +++ b/po/extra/li.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: li\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 4541b49d216a035153b22408742bfb2d38bd48fa Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:37 +0000 Subject: [PATCH 150/486] Added translation using Weblate (Tagalog) --- po/extra/tl.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tl.po diff --git a/po/extra/tl.po b/po/extra/tl.po new file mode 100644 index 00000000..774660fd --- /dev/null +++ b/po/extra/tl.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8d353d7cfabba29dc1d78ef520d5886d90667924 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:37 +0000 Subject: [PATCH 151/486] Added translation using Weblate (English (Canada)) --- po/extra/en_CA.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/en_CA.po diff --git a/po/extra/en_CA.po b/po/extra/en_CA.po new file mode 100644 index 00000000..5896f5d3 --- /dev/null +++ b/po/extra/en_CA.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 919e11f44c75f47496ddd0aed74e4bfa9fb806e9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:37 +0000 Subject: [PATCH 152/486] Added translation using Weblate (English (Australia)) --- po/extra/en_AU.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/en_AU.po diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po new file mode 100644 index 00000000..7e3b5722 --- /dev/null +++ b/po/extra/en_AU.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From cbc3de4c702d70e4bb3f16a4d2944a788e9df71f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:38 +0000 Subject: [PATCH 153/486] Added translation using Weblate (Kurdish (Central)) --- po/extra/ckb.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ckb.po diff --git a/po/extra/ckb.po b/po/extra/ckb.po new file mode 100644 index 00000000..f8002282 --- /dev/null +++ b/po/extra/ckb.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ckb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d50584b96f87f25cac7d09815e4340f54c256fae Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:38 +0000 Subject: [PATCH 154/486] Added translation using Weblate (Chinese (zh)) --- po/extra/zh.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/zh.po diff --git a/po/extra/zh.po b/po/extra/zh.po new file mode 100644 index 00000000..615dae5d --- /dev/null +++ b/po/extra/zh.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8fecc4464405a4cb3b885f08ca84a115232cc82c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:38 +0000 Subject: [PATCH 155/486] Added translation using Weblate (Sardinian) --- po/extra/sc.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sc.po diff --git a/po/extra/sc.po b/po/extra/sc.po new file mode 100644 index 00000000..b52c8f2a --- /dev/null +++ b/po/extra/sc.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 1ac6dcbfada52aba43f1abe15d3afb92c8356c71 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:38 +0000 Subject: [PATCH 156/486] Added translation using Weblate (Norwegian (old code) (no)) --- po/extra/no.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/no.po diff --git a/po/extra/no.po b/po/extra/no.po new file mode 100644 index 00000000..e3c269a3 --- /dev/null +++ b/po/extra/no.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 38df3943ce786d9024ed08f0d8d81ddd88049194 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:39 +0000 Subject: [PATCH 157/486] Added translation using Weblate (Ossetian) --- po/extra/os.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/os.po diff --git a/po/extra/os.po b/po/extra/os.po new file mode 100644 index 00000000..14fff7e9 --- /dev/null +++ b/po/extra/os.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: os\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7c1c98d3c2e01c62ad8fdd5322e7517b47be856b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:39 +0000 Subject: [PATCH 158/486] Added translation using Weblate (Tsonga) --- po/extra/ts.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ts.po diff --git a/po/extra/ts.po b/po/extra/ts.po new file mode 100644 index 00000000..d0f7f729 --- /dev/null +++ b/po/extra/ts.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ts\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f3a1744b2f66d3b27022d05bc22a65cf2a1d2c0c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:39 +0000 Subject: [PATCH 159/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Franco-Proven=C3=A7al)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/extra/frp.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/frp.po diff --git a/po/extra/frp.po b/po/extra/frp.po new file mode 100644 index 00000000..5f700e06 --- /dev/null +++ b/po/extra/frp.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: frp\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9c2700b6d0173e9841e911893ae7f7c1d963bbae Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:39 +0000 Subject: [PATCH 160/486] Added translation using Weblate (Chinese (Traditional)) --- po/extra/zh_Hant.po | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/zh_Hant.po diff --git a/po/extra/zh_Hant.po b/po/extra/zh_Hant.po new file mode 100644 index 00000000..bebcc0ad --- /dev/null +++ b/po/extra/zh_Hant.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hant\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 2264ef3aa332da0d820e811453dd802feca456ac Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:40 +0000 Subject: [PATCH 161/486] Added translation using Weblate (Chinese (Simplified)) --- po/extra/zh_Hans.po | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/zh_Hans.po diff --git a/po/extra/zh_Hans.po b/po/extra/zh_Hans.po new file mode 100644 index 00000000..10a48fa0 --- /dev/null +++ b/po/extra/zh_Hans.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hans\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 07b9fe08c9cd2e5952cb5079c83060344cf74aff Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:40 +0000 Subject: [PATCH 162/486] Added translation using Weblate (Bashkir) --- po/extra/ba.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ba.po diff --git a/po/extra/ba.po b/po/extra/ba.po new file mode 100644 index 00000000..66bc254c --- /dev/null +++ b/po/extra/ba.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0e48e7824eb377bd10633317e72155e5cf637a72 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:40 +0000 Subject: [PATCH 163/486] Added translation using Weblate (Yiddish) --- po/extra/yi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/yi.po diff --git a/po/extra/yi.po b/po/extra/yi.po new file mode 100644 index 00000000..27346236 --- /dev/null +++ b/po/extra/yi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 5fbd0514f869eb6ee42ff4962a4df766c4f568a4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:41 +0000 Subject: [PATCH 164/486] Added translation using Weblate (Ojibwe) --- po/extra/oj.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/oj.po diff --git a/po/extra/oj.po b/po/extra/oj.po new file mode 100644 index 00000000..8b222719 --- /dev/null +++ b/po/extra/oj.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 6a9286cf149dce9b1fa034a0caf2e7c6dd2ce520 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:41 +0000 Subject: [PATCH 165/486] Added translation using Weblate (Chamorro) --- po/extra/ch.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ch.po diff --git a/po/extra/ch.po b/po/extra/ch.po new file mode 100644 index 00000000..d759fdec --- /dev/null +++ b/po/extra/ch.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ch\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 1f3c72e1d3f1bd6772d7404ef7ccc7a8fbafe4a9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:41 +0000 Subject: [PATCH 166/486] Added translation using Weblate (Cree) --- po/extra/cr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/cr.po diff --git a/po/extra/cr.po b/po/extra/cr.po new file mode 100644 index 00000000..52aff772 --- /dev/null +++ b/po/extra/cr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c0a1a602c35f822425ed4dc4eca477a9452bfae9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:41 +0000 Subject: [PATCH 167/486] Added translation using Weblate (Nyanja) --- po/extra/ny.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ny.po diff --git a/po/extra/ny.po b/po/extra/ny.po new file mode 100644 index 00000000..e90da3a6 --- /dev/null +++ b/po/extra/ny.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ny\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 23a895f8ba1067f7fba1ae3a5ca568a80b65e6a6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:41 +0000 Subject: [PATCH 168/486] Added translation using Weblate (Latin) --- po/extra/la.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/la.po diff --git a/po/extra/la.po b/po/extra/la.po new file mode 100644 index 00000000..6ac0ba6b --- /dev/null +++ b/po/extra/la.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: la\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0566946ebc6ebf29a805ff50b50963bb84819978 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:42 +0000 Subject: [PATCH 169/486] Added translation using Weblate (French (Canada)) --- po/extra/fr_CA.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fr_CA.po diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po new file mode 100644 index 00000000..1eb8ef1a --- /dev/null +++ b/po/extra/fr_CA.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8e47a6b9f4fdf0c2d7d0b38b9ebfd43f86e2bcd0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:42 +0000 Subject: [PATCH 170/486] Added translation using Weblate (Igbo) --- po/extra/ig.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ig.po diff --git a/po/extra/ig.po b/po/extra/ig.po new file mode 100644 index 00000000..3fa4c99d --- /dev/null +++ b/po/extra/ig.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ig\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 7e798f69bdfb568370dcb5b3518a7f32961a78af Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:42 +0000 Subject: [PATCH 171/486] Added translation using Weblate (Shona) --- po/extra/sn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sn.po diff --git a/po/extra/sn.po b/po/extra/sn.po new file mode 100644 index 00000000..5f61777e --- /dev/null +++ b/po/extra/sn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From e06424237788320e7485df4f3dda7253cd4cc5d7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:43 +0000 Subject: [PATCH 172/486] Added translation using Weblate (Dhivehi) --- po/extra/dv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/dv.po diff --git a/po/extra/dv.po b/po/extra/dv.po new file mode 100644 index 00000000..37b0c38c --- /dev/null +++ b/po/extra/dv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From bdcadda7f0835db4e8c5a46cbf622a002d21e8c3 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:43 +0000 Subject: [PATCH 173/486] Added translation using Weblate (Avestan) --- po/extra/ae.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ae.po diff --git a/po/extra/ae.po b/po/extra/ae.po new file mode 100644 index 00000000..6cb6cbdd --- /dev/null +++ b/po/extra/ae.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ae\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f3b8a3c295d4b2fab93a1349f04883f94476c916 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:43 +0000 Subject: [PATCH 174/486] Added translation using Weblate (Avaric) --- po/extra/av.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/av.po diff --git a/po/extra/av.po b/po/extra/av.po new file mode 100644 index 00000000..e07f0963 --- /dev/null +++ b/po/extra/av.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: av\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From da57694086e35276d6d9daaf70c3c62d2f0ffb85 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:43 +0000 Subject: [PATCH 175/486] Added translation using Weblate (Bihari) --- po/extra/bh.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bh.po diff --git a/po/extra/bh.po b/po/extra/bh.po new file mode 100644 index 00000000..66d9e3a1 --- /dev/null +++ b/po/extra/bh.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 3834eb57f959ed4d2eddeb293b3a244d3d80cd69 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:44 +0000 Subject: [PATCH 176/486] Added translation using Weblate (Bislama) --- po/extra/bi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bi.po diff --git a/po/extra/bi.po b/po/extra/bi.po new file mode 100644 index 00000000..7d8d9c38 --- /dev/null +++ b/po/extra/bi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 3916705d7d3247b346776cfd311f81659d5f91ec Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:44 +0000 Subject: [PATCH 177/486] Added translation using Weblate (Bambara) --- po/extra/bm.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/bm.po diff --git a/po/extra/bm.po b/po/extra/bm.po new file mode 100644 index 00000000..d76d0b2d --- /dev/null +++ b/po/extra/bm.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From dcedf236866f3682c034669608ebbb982b31e66a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:44 +0000 Subject: [PATCH 178/486] Added translation using Weblate (Chechen) --- po/extra/ce.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ce.po diff --git a/po/extra/ce.po b/po/extra/ce.po new file mode 100644 index 00000000..c346d03a --- /dev/null +++ b/po/extra/ce.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ce\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 56c1887ed99f4dfa2c41f92ac54fdf79a0f96f80 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:44 +0000 Subject: [PATCH 179/486] Added translation using Weblate (Corsican) --- po/extra/co.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/co.po diff --git a/po/extra/co.po b/po/extra/co.po new file mode 100644 index 00000000..4fdddd9c --- /dev/null +++ b/po/extra/co.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: co\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 5f46ea56a71de31d0b2ed7d0bc653ca33bb18e7c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:45 +0000 Subject: [PATCH 180/486] Added translation using Weblate (Slavonic (Old Church)) --- po/extra/cu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/cu.po diff --git a/po/extra/cu.po b/po/extra/cu.po new file mode 100644 index 00000000..03bd9fe6 --- /dev/null +++ b/po/extra/cu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d45e5eb9f4d81d6067ebe48687c73cc88d1d713c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:45 +0000 Subject: [PATCH 181/486] Added translation using Weblate (Chuvash) --- po/extra/cv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/cv.po diff --git a/po/extra/cv.po b/po/extra/cv.po new file mode 100644 index 00000000..2cfd2de6 --- /dev/null +++ b/po/extra/cv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f97602cd850b84478a75995dd3a1ada7b3189d12 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:46 +0000 Subject: [PATCH 182/486] Added translation using Weblate (Ewe) --- po/extra/ee.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ee.po diff --git a/po/extra/ee.po b/po/extra/ee.po new file mode 100644 index 00000000..8efe0782 --- /dev/null +++ b/po/extra/ee.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ee\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From fdb8dfa095b6d26f767e3e330a78ebb2dd2051b1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:46 +0000 Subject: [PATCH 183/486] Added translation using Weblate (Fijian) --- po/extra/fj.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/fj.po diff --git a/po/extra/fj.po b/po/extra/fj.po new file mode 100644 index 00000000..6c3ea299 --- /dev/null +++ b/po/extra/fj.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d16b508626de8edef2bf4202c34f6df9e865079f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:46 +0000 Subject: [PATCH 184/486] Added translation using Weblate (Manx) --- po/extra/gv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/gv.po diff --git a/po/extra/gv.po b/po/extra/gv.po new file mode 100644 index 00000000..a2308048 --- /dev/null +++ b/po/extra/gv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8ea61b92e5a072063ccfceccd50c4db223aa836c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:47 +0000 Subject: [PATCH 185/486] Added translation using Weblate (Hiri Motu) --- po/extra/ho.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ho.po diff --git a/po/extra/ho.po b/po/extra/ho.po new file mode 100644 index 00000000..17af35c1 --- /dev/null +++ b/po/extra/ho.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ho\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ec9c0ed058a365d4b4b8ffa30b9fe21f5344821d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:47 +0000 Subject: [PATCH 186/486] Added translation using Weblate (Herero) --- po/extra/hz.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/hz.po diff --git a/po/extra/hz.po b/po/extra/hz.po new file mode 100644 index 00000000..37e53919 --- /dev/null +++ b/po/extra/hz.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 04cc1185877beac7c514fcf8f87b1c0533210203 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:48 +0000 Subject: [PATCH 187/486] Added translation using Weblate (Occidental) --- po/extra/ie.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ie.po diff --git a/po/extra/ie.po b/po/extra/ie.po new file mode 100644 index 00000000..d8e467cc --- /dev/null +++ b/po/extra/ie.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ie\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d5e10002c094986f3c0ff8bdeebce8387897e939 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:48 +0000 Subject: [PATCH 188/486] Added translation using Weblate (Nuosu) --- po/extra/ii.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ii.po diff --git a/po/extra/ii.po b/po/extra/ii.po new file mode 100644 index 00000000..4e04fce1 --- /dev/null +++ b/po/extra/ii.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ii\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0001cfe040c90a747114338e149503b3cd1e9794 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:48 +0000 Subject: [PATCH 189/486] Added translation using Weblate (Inupiaq) --- po/extra/ik.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ik.po diff --git a/po/extra/ik.po b/po/extra/ik.po new file mode 100644 index 00000000..3701f61d --- /dev/null +++ b/po/extra/ik.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ik\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ecf1fc242a35be903bdf250637831710a0645f3a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:49 +0000 Subject: [PATCH 190/486] Added translation using Weblate (Ido) --- po/extra/io.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/io.po diff --git a/po/extra/io.po b/po/extra/io.po new file mode 100644 index 00000000..8c6bc572 --- /dev/null +++ b/po/extra/io.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: io\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 720a9ef40f16f377e79ba113494a1001657577aa Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:49 +0000 Subject: [PATCH 191/486] Added translation using Weblate (Inuktitut) --- po/extra/iu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/iu.po diff --git a/po/extra/iu.po b/po/extra/iu.po new file mode 100644 index 00000000..0d9d4791 --- /dev/null +++ b/po/extra/iu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: iu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 1f1836b76405a68cc2b4e7ce2b591ebb75e5d8e8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:50 +0000 Subject: [PATCH 192/486] Added translation using Weblate (Kongo) --- po/extra/kg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kg.po diff --git a/po/extra/kg.po b/po/extra/kg.po new file mode 100644 index 00000000..f09a062e --- /dev/null +++ b/po/extra/kg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 412cd144f72efcb7e95013753ac072023bd14870 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:50 +0000 Subject: [PATCH 193/486] Added translation using Weblate (Gikuyu) --- po/extra/ki.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ki.po diff --git a/po/extra/ki.po b/po/extra/ki.po new file mode 100644 index 00000000..4d90ca38 --- /dev/null +++ b/po/extra/ki.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ki\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c48cfd8a3f37e4c3597bbb0b64b5743021173685 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:50 +0000 Subject: [PATCH 194/486] Added translation using Weblate (Kwanyama) --- po/extra/kj.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kj.po diff --git a/po/extra/kj.po b/po/extra/kj.po new file mode 100644 index 00000000..75b438cd --- /dev/null +++ b/po/extra/kj.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 31bbb8e8b7d99f793625aefe59132f199c3774f8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:51 +0000 Subject: [PATCH 195/486] Added translation using Weblate (Kanuri) --- po/extra/kr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kr.po diff --git a/po/extra/kr.po b/po/extra/kr.po new file mode 100644 index 00000000..ad957c54 --- /dev/null +++ b/po/extra/kr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From fe883f40dc7e6bf466820a1f1cfb1872698f776e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:51 +0000 Subject: [PATCH 196/486] Added translation using Weblate (Komi) --- po/extra/kv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/kv.po diff --git a/po/extra/kv.po b/po/extra/kv.po new file mode 100644 index 00000000..c66384e1 --- /dev/null +++ b/po/extra/kv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From dfe21f8891777364006af9bb2129a47454d166fe Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:51 +0000 Subject: [PATCH 197/486] Added translation using Weblate (Luganda) --- po/extra/lg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/lg.po diff --git a/po/extra/lg.po b/po/extra/lg.po new file mode 100644 index 00000000..e9fd69de --- /dev/null +++ b/po/extra/lg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 10612a999ff8f23b4e0f5c0c7293676c83e9692d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:52 +0000 Subject: [PATCH 198/486] Added translation using Weblate (Luba-Katanga) --- po/extra/lu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/lu.po diff --git a/po/extra/lu.po b/po/extra/lu.po new file mode 100644 index 00000000..c6346ff7 --- /dev/null +++ b/po/extra/lu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From dbdc8cb18e5eff66f50657f0dd8fd1a844c57546 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:52 +0000 Subject: [PATCH 199/486] Added translation using Weblate (Marshallese) --- po/extra/mh.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mh.po diff --git a/po/extra/mh.po b/po/extra/mh.po new file mode 100644 index 00000000..68bfab8d --- /dev/null +++ b/po/extra/mh.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 36c4ac7245d62feacaec4df62b7c00d4f21dad73 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:52 +0000 Subject: [PATCH 200/486] Added translation using Weblate (Moldovan (mo)) --- po/extra/mo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/mo.po diff --git a/po/extra/mo.po b/po/extra/mo.po new file mode 100644 index 00000000..8a13db7e --- /dev/null +++ b/po/extra/mo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8e98ed01a00e6f3da73a0e38b0029483a8005ef1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:53 +0000 Subject: [PATCH 201/486] Added translation using Weblate (Nauru) --- po/extra/na.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/na.po diff --git a/po/extra/na.po b/po/extra/na.po new file mode 100644 index 00000000..9d42b617 --- /dev/null +++ b/po/extra/na.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: na\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 3211ff77b44302a181309c29675215e18e3eec24 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:53 +0000 Subject: [PATCH 202/486] Added translation using Weblate (Ndebele (Northern)) --- po/extra/nd.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/nd.po diff --git a/po/extra/nd.po b/po/extra/nd.po new file mode 100644 index 00000000..afc2cdc4 --- /dev/null +++ b/po/extra/nd.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8b2154a3c10fd60b5355a46a6cae034783f8963e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:53 +0000 Subject: [PATCH 203/486] Added translation using Weblate (Ndonga) --- po/extra/ng.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ng.po diff --git a/po/extra/ng.po b/po/extra/ng.po new file mode 100644 index 00000000..8afdd575 --- /dev/null +++ b/po/extra/ng.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ng\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 3a7960a41487a661e745d4465ba9795ce7c17698 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:53 +0000 Subject: [PATCH 204/486] Added translation using Weblate (Ndebele (Southern)) --- po/extra/nr.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/nr.po diff --git a/po/extra/nr.po b/po/extra/nr.po new file mode 100644 index 00000000..61eac3e8 --- /dev/null +++ b/po/extra/nr.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From e7e551bf88b3c08e0080777d6432f3e4ef7fa032 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:54 +0000 Subject: [PATCH 205/486] Added translation using Weblate (Navaho) --- po/extra/nv.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/nv.po diff --git a/po/extra/nv.po b/po/extra/nv.po new file mode 100644 index 00000000..bafbc472 --- /dev/null +++ b/po/extra/nv.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 478a6468c52efc1bc04869d9d2513f57d3d31f6f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:54 +0000 Subject: [PATCH 206/486] Added translation using Weblate (Oromo) --- po/extra/om.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/om.po diff --git a/po/extra/om.po b/po/extra/om.po new file mode 100644 index 00000000..d2d015d0 --- /dev/null +++ b/po/extra/om.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: om\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ccef3daa28e8518c982425b538f828124d08a102 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:54 +0000 Subject: [PATCH 207/486] Added translation using Weblate (Pali) --- po/extra/pi.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/pi.po diff --git a/po/extra/pi.po b/po/extra/pi.po new file mode 100644 index 00000000..8dcefbf1 --- /dev/null +++ b/po/extra/pi.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8a1aff43b7fdaf152b6d6c6e67797c5371dc18b0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:54 +0000 Subject: [PATCH 208/486] Added translation using Weblate (Quechua) --- po/extra/qu.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/qu.po diff --git a/po/extra/qu.po b/po/extra/qu.po new file mode 100644 index 00000000..1d23a73d --- /dev/null +++ b/po/extra/qu.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: qu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c48edf91e8b3e70dd09e281c625c0cff9e8dbb9c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:55 +0000 Subject: [PATCH 209/486] Added translation using Weblate (Rundi) --- po/extra/rn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/rn.po diff --git a/po/extra/rn.po b/po/extra/rn.po new file mode 100644 index 00000000..3b06be61 --- /dev/null +++ b/po/extra/rn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 8f6e17aa50cb0110deeb8560e0ae5165b622be8e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:55 +0000 Subject: [PATCH 210/486] Added translation using Weblate (Rusyn) --- po/extra/rue.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/rue.po diff --git a/po/extra/rue.po b/po/extra/rue.po new file mode 100644 index 00000000..a574698e --- /dev/null +++ b/po/extra/rue.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rue\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From df73f3420c4b1c7da15da1d4438e32c2f2246f8b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:55 +0000 Subject: [PATCH 211/486] Added translation using Weblate (Sango) --- po/extra/sg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sg.po diff --git a/po/extra/sg.po b/po/extra/sg.po new file mode 100644 index 00000000..d08a3edd --- /dev/null +++ b/po/extra/sg.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From d0e96a68066117b353333023c7e872df3f0e20ae Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:56 +0000 Subject: [PATCH 212/486] Added translation using Weblate (Samoan) --- po/extra/sm.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sm.po diff --git a/po/extra/sm.po b/po/extra/sm.po new file mode 100644 index 00000000..f0b67dd3 --- /dev/null +++ b/po/extra/sm.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From f4129b78082a419b0c35768d901cb75574d5bbd3 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:56 +0000 Subject: [PATCH 213/486] Added translation using Weblate (Sami (Southern)) --- po/extra/sma.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sma.po diff --git a/po/extra/sma.po b/po/extra/sma.po new file mode 100644 index 00000000..97e3c926 --- /dev/null +++ b/po/extra/sma.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sma\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From ba3c0dd43a067995b314a46c5f026461518ea4ef Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:56 +0000 Subject: [PATCH 214/486] Added translation using Weblate (Swati) --- po/extra/ss.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ss.po diff --git a/po/extra/ss.po b/po/extra/ss.po new file mode 100644 index 00000000..9a9551d0 --- /dev/null +++ b/po/extra/ss.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ss\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 03afb9b621c2a7325f65b4990f771c34e42b3816 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:57 +0000 Subject: [PATCH 215/486] Added translation using Weblate (Tswana) --- po/extra/tn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tn.po diff --git a/po/extra/tn.po b/po/extra/tn.po new file mode 100644 index 00000000..af7b071f --- /dev/null +++ b/po/extra/tn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 44e2bdc07bcfe4edce5d1098fdcc740706782e45 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:57 +0000 Subject: [PATCH 216/486] Added translation using Weblate (Tongan) --- po/extra/to.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/to.po diff --git a/po/extra/to.po b/po/extra/to.po new file mode 100644 index 00000000..f7399b6b --- /dev/null +++ b/po/extra/to.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: to\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From c6097b2e65cb8da37fa9e263a6dcaeb59583dab4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:57 +0000 Subject: [PATCH 217/486] Added translation using Weblate (Twi) --- po/extra/tw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/tw.po diff --git a/po/extra/tw.po b/po/extra/tw.po new file mode 100644 index 00000000..251c8704 --- /dev/null +++ b/po/extra/tw.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 48ea6765015b3a270941c8a6e0043149130497c1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:58 +0000 Subject: [PATCH 218/486] Added translation using Weblate (Tahitian) --- po/extra/ty.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ty.po diff --git a/po/extra/ty.po b/po/extra/ty.po new file mode 100644 index 00000000..fb1783c9 --- /dev/null +++ b/po/extra/ty.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ty\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 851d59e42479250203d49678efe30d76da5cc401 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:58 +0000 Subject: [PATCH 219/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Volap=C3=BCk)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/extra/vo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/vo.po diff --git a/po/extra/vo.po b/po/extra/vo.po new file mode 100644 index 00000000..c9d49148 --- /dev/null +++ b/po/extra/vo.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 20785e44897ac2658b01217b60ef1243ab7b6aa9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:58 +0000 Subject: [PATCH 220/486] Added translation using Weblate (Xhosa) --- po/extra/xh.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/xh.po diff --git a/po/extra/xh.po b/po/extra/xh.po new file mode 100644 index 00000000..60b50aa0 --- /dev/null +++ b/po/extra/xh.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 35d5a8a9e273ec6be3dce08cc314be25bc775adc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:59 +0000 Subject: [PATCH 221/486] Added translation using Weblate (Zhuang) --- po/extra/za.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/za.po diff --git a/po/extra/za.po b/po/extra/za.po new file mode 100644 index 00000000..98847bd9 --- /dev/null +++ b/po/extra/za.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: za\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 51887e09e832cdb45ef7f0669b07bc77526fec8e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:59 +0000 Subject: [PATCH 222/486] Added translation using Weblate (sr (generated) (sr@latin)) --- po/extra/sr@latin.po | 50 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/sr@latin.po diff --git a/po/extra/sr@latin.po b/po/extra/sr@latin.po new file mode 100644 index 00000000..bc25db53 --- /dev/null +++ b/po/extra/sr@latin.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 9214fdef16a4646cf013e6f5ea2cbf442cdc157f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:45:59 +0000 Subject: [PATCH 223/486] Added translation using Weblate (zh (generated) (zh_HK)) --- po/extra/zh_HK.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/zh_HK.po diff --git a/po/extra/zh_HK.po b/po/extra/zh_HK.po new file mode 100644 index 00000000..c7cb295a --- /dev/null +++ b/po/extra/zh_HK.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 0cebb75a3f03ef489c66f33dd26016b822632d07 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:00 +0000 Subject: [PATCH 224/486] Added translation using Weblate (Indonesian (id_ID)) --- po/extra/id_ID.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/id_ID.po diff --git a/po/extra/id_ID.po b/po/extra/id_ID.po new file mode 100644 index 00000000..f1d96c72 --- /dev/null +++ b/po/extra/id_ID.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id_ID\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 384b98331718f47d5ca2324ee0279fe796d1b4e1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:00 +0000 Subject: [PATCH 225/486] Added translation using Weblate (Acehnese) --- po/extra/ace.po | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ace.po diff --git a/po/extra/ace.po b/po/extra/ace.po new file mode 100644 index 00000000..cd8d0700 --- /dev/null +++ b/po/extra/ace.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ace\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 635844ca6569271986bd5d992f4b1056e8c4fed6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:01 +0000 Subject: [PATCH 226/486] Added translation using Weblate (Aragonese) --- po/extra/an.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/an.po diff --git a/po/extra/an.po b/po/extra/an.po new file mode 100644 index 00000000..ab08ee70 --- /dev/null +++ b/po/extra/an.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: an\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From a3513d832289a4e0015bdf0358c5860ea94fab41 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:01 +0000 Subject: [PATCH 227/486] Added translation using Weblate (Guarani) --- po/extra/gn.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/gn.po diff --git a/po/extra/gn.po b/po/extra/gn.po new file mode 100644 index 00000000..6220568a --- /dev/null +++ b/po/extra/gn.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 4adec49fd0f807fc3c5aafddb5fde3947f89ca69 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:01 +0000 Subject: [PATCH 228/486] Added translation using Weblate (Afar) --- po/extra/aa.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/aa.po diff --git a/po/extra/aa.po b/po/extra/aa.po new file mode 100644 index 00000000..91fa3cb2 --- /dev/null +++ b/po/extra/aa.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: aa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 378e2a05f3512aaa471474de5e23cc40c71ac192 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:02 +0000 Subject: [PATCH 229/486] Added translation using Weblate (Abkhazian) --- po/extra/ab.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 po/extra/ab.po diff --git a/po/extra/ab.po b/po/extra/ab.po new file mode 100644 index 00000000..c1c32800 --- /dev/null +++ b/po/extra/ab.po @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.stsdc.monitor.appdata.xml.in:7 +#: data/com.github.stsdc.monitor.desktop.in:3 +msgid "Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:8 +msgid "Manage processes and monitor system resources" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:10 +msgid "Display usage of system resources, filter and manage processes." +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:22 +msgid "Stanisław Dac" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:6 +msgid "Manage processes and monitor resource usage of the system" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:10 +msgid "com.github.stsdc.monitor" +msgstr "" + +#: data/com.github.stsdc.monitor.desktop.in:14 +msgid "System monitor;System usage;Task manager;" +msgstr "" From 88f92c5b8b5b322910771cc8c61379f6d9538159 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:08 +0000 Subject: [PATCH 230/486] Added translation using Weblate (Swedish) --- po/sv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sv.po diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 00000000..cf6e20dd --- /dev/null +++ b/po/sv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c2b6d0f89e341360b6eeeb3b9d7f7dfbc6fd8d52 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:08 +0000 Subject: [PATCH 231/486] Added translation using Weblate (Greenlandic) --- po/kl.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kl.po diff --git a/po/kl.po b/po/kl.po new file mode 100644 index 00000000..03049809 --- /dev/null +++ b/po/kl.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From abf73ac9960f8644d09d583d4fc94e770ba2ad34 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:09 +0000 Subject: [PATCH 232/486] Added translation using Weblate (Bengali) --- po/bn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bn.po diff --git a/po/bn.po b/po/bn.po new file mode 100644 index 00000000..3336a206 --- /dev/null +++ b/po/bn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c8918c356a1da7f1d305c299c42afaef499a6818 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:09 +0000 Subject: [PATCH 233/486] Added translation using Weblate (Tamil) --- po/ta.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ta.po diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 00000000..b962511c --- /dev/null +++ b/po/ta.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c4aca535511a6c80442edcee61b234997bec6bf7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:10 +0000 Subject: [PATCH 234/486] Added translation using Weblate (Uzbek) --- po/uz.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/uz.po diff --git a/po/uz.po b/po/uz.po new file mode 100644 index 00000000..24e8b1bf --- /dev/null +++ b/po/uz.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 69122e9afccf020ff620eb0348c1e69ea1dd7af2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:12 +0000 Subject: [PATCH 235/486] Added translation using Weblate (Bulgarian) --- po/bg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bg.po diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 00000000..47019eb4 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 84bf4d08c74c55d3051c40cf04830d40e8f4d8d0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:12 +0000 Subject: [PATCH 236/486] Added translation using Weblate (Esperanto) --- po/eo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/eo.po diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 00000000..be13cc73 --- /dev/null +++ b/po/eo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 68f4a2bbbf1aaf59a065f9af8a7362b8167b3474 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:13 +0000 Subject: [PATCH 237/486] Added translation using Weblate (Malayalam) --- po/ml.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ml.po diff --git a/po/ml.po b/po/ml.po new file mode 100644 index 00000000..bba253fa --- /dev/null +++ b/po/ml.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ml\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7f65d04626ef63655ca8a957b816a99d47febd60 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:15 +0000 Subject: [PATCH 238/486] Added translation using Weblate (Slovak) --- po/sk.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sk.po diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 00000000..835f205f --- /dev/null +++ b/po/sk.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4f82e72a6f9075510916292d8cfa5f57de7a4d57 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:16 +0000 Subject: [PATCH 239/486] Added translation using Weblate (Telugu) --- po/te.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/te.po diff --git a/po/te.po b/po/te.po new file mode 100644 index 00000000..03089f34 --- /dev/null +++ b/po/te.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 326738a23108ec9d9e6f1c6a7243f1f426987b2b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:17 +0000 Subject: [PATCH 240/486] Added translation using Weblate (Tatar) --- po/tt.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tt.po diff --git a/po/tt.po b/po/tt.po new file mode 100644 index 00000000..ea4de27c --- /dev/null +++ b/po/tt.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From d8a756d5382c917235e65bb275ccdee00cd0431d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:19 +0000 Subject: [PATCH 241/486] Added translation using Weblate (Sanskrit) --- po/sa.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sa.po diff --git a/po/sa.po b/po/sa.po new file mode 100644 index 00000000..d4d7836d --- /dev/null +++ b/po/sa.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 800f44cd536cc9a26256304cf3c9f9a52d8fb2f5 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:19 +0000 Subject: [PATCH 242/486] Added translation using Weblate (Armenian) --- po/hy.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/hy.po diff --git a/po/hy.po b/po/hy.po new file mode 100644 index 00000000..474350c6 --- /dev/null +++ b/po/hy.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 6d89941a9c8405acba2888cfb8d0dca3c71d4a88 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:20 +0000 Subject: [PATCH 243/486] Added translation using Weblate (Hausa) --- po/ha.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ha.po diff --git a/po/ha.po b/po/ha.po new file mode 100644 index 00000000..1e060fc1 --- /dev/null +++ b/po/ha.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ha\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3fe54a7071c4d43515699082759acb822ba100ca Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:20 +0000 Subject: [PATCH 244/486] Added translation using Weblate (Catalan) --- po/ca.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ca.po diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 00000000..b8b5ec34 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 2ee70058a0e728635e3b0e866ec47739a94ac3a2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:21 +0000 Subject: [PATCH 245/486] Added translation using Weblate (Javanese) --- po/jv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/jv.po diff --git a/po/jv.po b/po/jv.po new file mode 100644 index 00000000..9aff5737 --- /dev/null +++ b/po/jv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: jv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From f348699660645961d12d820cd1217fe967fef58e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:21 +0000 Subject: [PATCH 246/486] Added translation using Weblate (Gujarati) --- po/gu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/gu.po diff --git a/po/gu.po b/po/gu.po new file mode 100644 index 00000000..4a1a4b3a --- /dev/null +++ b/po/gu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4c92a35b860230df3d6bed4518a67db7ab5f8d6d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:22 +0000 Subject: [PATCH 247/486] Added translation using Weblate (Hindi) --- po/hi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/hi.po diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 00000000..fa79b7d7 --- /dev/null +++ b/po/hi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 12c0c165dcdc558378193c2b64a60431fa071fe1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:22 +0000 Subject: [PATCH 248/486] Added translation using Weblate (Greek) --- po/el.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/el.po diff --git a/po/el.po b/po/el.po new file mode 100644 index 00000000..40e1ed3c --- /dev/null +++ b/po/el.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 23c713c1b243eb02f028e4bef16757987c17cf20 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:23 +0000 Subject: [PATCH 249/486] Added translation using Weblate (Finnish) --- po/fi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fi.po diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 00000000..2fab36c5 --- /dev/null +++ b/po/fi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From dccc5da14973d2c5e9d910c0a84352b2d03254df Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:23 +0000 Subject: [PATCH 250/486] Added translation using Weblate (Portuguese (Brazil)) --- po/pt_BR.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/pt_BR.po diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 00000000..6ff663dd --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 733488d7e27f69eb7a04c6b6f3743c80ef2d2682 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:24 +0000 Subject: [PATCH 251/486] Added translation using Weblate (Aymara) --- po/ay.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ay.po diff --git a/po/ay.po b/po/ay.po new file mode 100644 index 00000000..d3695fb5 --- /dev/null +++ b/po/ay.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ay\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 6d15612704bc05d393db8acba86774095ddce177 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:24 +0000 Subject: [PATCH 252/486] Added translation using Weblate (Norwegian Nynorsk) --- po/nn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/nn.po diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 00000000..31fad1d5 --- /dev/null +++ b/po/nn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1d4f355347ff81d9cef84df2de0cb78ccc79919c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:25 +0000 Subject: [PATCH 253/486] Added translation using Weblate (Pashto) --- po/ps.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ps.po diff --git a/po/ps.po b/po/ps.po new file mode 100644 index 00000000..64a06781 --- /dev/null +++ b/po/ps.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ps\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From cfb1a1aa87a387f4564411748365beca3d8dd2a1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:25 +0000 Subject: [PATCH 254/486] Added translation using Weblate (Uyghur) --- po/ug.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ug.po diff --git a/po/ug.po b/po/ug.po new file mode 100644 index 00000000..38c93078 --- /dev/null +++ b/po/ug.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ug\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From fe994db8d6c18caa5a7b460984b29ecdadc2ff12 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:25 +0000 Subject: [PATCH 255/486] Added translation using Weblate (Urdu) --- po/ur.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ur.po diff --git a/po/ur.po b/po/ur.po new file mode 100644 index 00000000..5e55feb1 --- /dev/null +++ b/po/ur.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 044c78f334866c997406e7d749418d37a892897f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:26 +0000 Subject: [PATCH 256/486] Added translation using Weblate (Sami (Northern)) --- po/se.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/se.po diff --git a/po/se.po b/po/se.po new file mode 100644 index 00000000..dc0fab2f --- /dev/null +++ b/po/se.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 30e77576f8f3f0633f5724be5c3535b2f85af6fc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:26 +0000 Subject: [PATCH 257/486] Added translation using Weblate (Persian) --- po/fa.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fa.po diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 00000000..ef579b01 --- /dev/null +++ b/po/fa.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From cd7b7e45714e6527351000f9f39e866ecdc21ad4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:27 +0000 Subject: [PATCH 258/486] Added translation using Weblate (English (United Kingdom)) --- po/en_GB.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/en_GB.po diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 00000000..27245881 --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 697a269b1eac528eff3b57df026cf110beb8bbbf Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:28 +0000 Subject: [PATCH 259/486] Added translation using Weblate (Icelandic) --- po/is.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/is.po diff --git a/po/is.po b/po/is.po new file mode 100644 index 00000000..ba221bf5 --- /dev/null +++ b/po/is.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8a1ad25a94fe2dce3fec2889c0f02a78caf90f01 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:28 +0000 Subject: [PATCH 260/486] Added translation using Weblate (Gaelic) --- po/gd.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/gd.po diff --git a/po/gd.po b/po/gd.po new file mode 100644 index 00000000..a297cf2c --- /dev/null +++ b/po/gd.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 29cf2bcfd15571111cd611c1823276a44f129f17 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:28 +0000 Subject: [PATCH 261/486] Added translation using Weblate (Maori) --- po/mi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mi.po diff --git a/po/mi.po b/po/mi.po new file mode 100644 index 00000000..1bdd2b8d --- /dev/null +++ b/po/mi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b3a800565c897db9867931b6b4cb3ea6a5eda457 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:29 +0000 Subject: [PATCH 262/486] Added translation using Weblate (Breton) --- po/br.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/br.po diff --git a/po/br.po b/po/br.po new file mode 100644 index 00000000..f7fcb2d5 --- /dev/null +++ b/po/br.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3228079234276b60a1826aeff3ef59c7f121e8df Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:29 +0000 Subject: [PATCH 263/486] Added translation using Weblate (Luxembourgish) --- po/lb.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/lb.po diff --git a/po/lb.po b/po/lb.po new file mode 100644 index 00000000..57851723 --- /dev/null +++ b/po/lb.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7f06f6c50018b4717dfd8ef568982cfc5ac28106 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:30 +0000 Subject: [PATCH 264/486] Added translation using Weblate (Serbian) --- po/sr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sr.po diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 00000000..1349ba47 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From bdcd4326056f0453f4ce5ca556925fd829b7d11f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:31 +0000 Subject: [PATCH 265/486] Added translation using Weblate (Slovenian) --- po/sl.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sl.po diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 00000000..8ef38f38 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 753f03efee37cd95d1020842da8b446e40fa1562 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:31 +0000 Subject: [PATCH 266/486] Added translation using Weblate (Sindhi) --- po/sd.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sd.po diff --git a/po/sd.po b/po/sd.po new file mode 100644 index 00000000..81754d46 --- /dev/null +++ b/po/sd.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 46958457c1a99e330ff859fa7257b80c6cb66823 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:32 +0000 Subject: [PATCH 267/486] Added translation using Weblate (Kyrgyz) --- po/ky.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ky.po diff --git a/po/ky.po b/po/ky.po new file mode 100644 index 00000000..581624dd --- /dev/null +++ b/po/ky.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From f0b29d95cfb504f7adf5931dcba3dc3e1cd79eb6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:33 +0000 Subject: [PATCH 268/486] Added translation using Weblate (Valencian) --- po/ca@valencia.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ca@valencia.po diff --git a/po/ca@valencia.po b/po/ca@valencia.po new file mode 100644 index 00000000..f4e6d3d1 --- /dev/null +++ b/po/ca@valencia.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca@valencia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b485d80e3b32b1947f7c97c00a00efab8d8e67c9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:33 +0000 Subject: [PATCH 269/486] Added translation using Weblate (Khmer (Central)) --- po/km.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/km.po diff --git a/po/km.po b/po/km.po new file mode 100644 index 00000000..ef365949 --- /dev/null +++ b/po/km.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 74f1c20f3229a93a511c5d8346fd936e322cdbe8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:34 +0000 Subject: [PATCH 270/486] Added translation using Weblate (Marathi) --- po/mr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mr.po diff --git a/po/mr.po b/po/mr.po new file mode 100644 index 00000000..291747af --- /dev/null +++ b/po/mr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From fc92d2ebca5c74b008b930a6ccdc65cbe50efb59 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:35 +0000 Subject: [PATCH 271/486] Added translation using Weblate (Vietnamese) --- po/vi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/vi.po diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 00000000..ea9a7e43 --- /dev/null +++ b/po/vi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 17aefb4d11e1034d72e4304c349b0e0c9006b067 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:36 +0000 Subject: [PATCH 272/486] Added translation using Weblate (Macedonian) --- po/mk.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mk.po diff --git a/po/mk.po b/po/mk.po new file mode 100644 index 00000000..17a21e4c --- /dev/null +++ b/po/mk.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 77e27389c81e3a46976ff4110a74cb3779511a8f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:36 +0000 Subject: [PATCH 273/486] Added translation using Weblate (Punjabi) --- po/pa.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/pa.po diff --git a/po/pa.po b/po/pa.po new file mode 100644 index 00000000..bf760d61 --- /dev/null +++ b/po/pa.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From d307d91773d05273c64c55cb988dbb631909d87b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:37 +0000 Subject: [PATCH 274/486] Added translation using Weblate (Basque) --- po/eu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/eu.po diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 00000000..e785e67c --- /dev/null +++ b/po/eu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From acf1a97682c4e88261758a21e2aab550e37544c6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:38 +0000 Subject: [PATCH 275/486] Added translation using Weblate (Estonian) --- po/et.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/et.po diff --git a/po/et.po b/po/et.po new file mode 100644 index 00000000..5fd2f1ac --- /dev/null +++ b/po/et.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c334cf4c4f377af8c02a4de8d5a99e2f37f76b2f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:38 +0000 Subject: [PATCH 276/486] Added translation using Weblate (Arabic) --- po/ar.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ar.po diff --git a/po/ar.po b/po/ar.po new file mode 100644 index 00000000..e112e320 --- /dev/null +++ b/po/ar.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c3b3208c60297fc94166a2bf20a3ca53d4b1fd5f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:39 +0000 Subject: [PATCH 277/486] Added translation using Weblate (Zulu) --- po/zu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/zu.po diff --git a/po/zu.po b/po/zu.po new file mode 100644 index 00000000..0bd15a0f --- /dev/null +++ b/po/zu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 5c08902cdfb77a4cfa1fac6f3de96f8b849c4095 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:39 +0000 Subject: [PATCH 278/486] Added translation using Weblate (Danish) --- po/da.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/da.po diff --git a/po/da.po b/po/da.po new file mode 100644 index 00000000..4356c825 --- /dev/null +++ b/po/da.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 084169872a8049dbbb7871b6fe39b6aa23c07aac Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:40 +0000 Subject: [PATCH 279/486] Added translation using Weblate (Lao) --- po/lo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/lo.po diff --git a/po/lo.po b/po/lo.po new file mode 100644 index 00000000..59647b29 --- /dev/null +++ b/po/lo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 706cb6d307ca26cf5af8b64c79ee9c06a9a06dbd Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:40 +0000 Subject: [PATCH 280/486] Added translation using Weblate (Dzongkha) --- po/dz.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/dz.po diff --git a/po/dz.po b/po/dz.po new file mode 100644 index 00000000..d41a8c2b --- /dev/null +++ b/po/dz.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3185bddaaafb56f5309f724dbcde64fc4f9a40f7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:41 +0000 Subject: [PATCH 281/486] Added translation using Weblate (Silesian) --- po/szl.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/szl.po diff --git a/po/szl.po b/po/szl.po new file mode 100644 index 00000000..98217965 --- /dev/null +++ b/po/szl.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: szl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7b4ffce09664711e7196bd0c49c4fb8496ed6ebe Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:41 +0000 Subject: [PATCH 282/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Norwegian=20Bokm=C3=A5l=20(nb))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/nb.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/nb.po diff --git a/po/nb.po b/po/nb.po new file mode 100644 index 00000000..1a5585e4 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7c279b49845a01f57b25df57ab84a6adcdcc3d74 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:42 +0000 Subject: [PATCH 283/486] Added translation using Weblate (Mongolian) --- po/mn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mn.po diff --git a/po/mn.po b/po/mn.po new file mode 100644 index 00000000..19032646 --- /dev/null +++ b/po/mn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1aac2103a5ee844f3e001d273708c65a57286715 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:42 +0000 Subject: [PATCH 284/486] Added translation using Weblate (Walloon) --- po/wa.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/wa.po diff --git a/po/wa.po b/po/wa.po new file mode 100644 index 00000000..d2cfd16d --- /dev/null +++ b/po/wa.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 46008a52b220f7936bacb5e3287b85b21409036e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:43 +0000 Subject: [PATCH 285/486] Added translation using Weblate (Hebrew) --- po/he.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/he.po diff --git a/po/he.po b/po/he.po new file mode 100644 index 00000000..fb1b479b --- /dev/null +++ b/po/he.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From e993f0459a20aa7c5fe82cb8822b85db7c6adb30 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:43 +0000 Subject: [PATCH 286/486] Added translation using Weblate (Georgian) --- po/ka.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ka.po diff --git a/po/ka.po b/po/ka.po new file mode 100644 index 00000000..e7530701 --- /dev/null +++ b/po/ka.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 185a5d28d83a2b01094fd7e25350e4a16da959ad Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:44 +0000 Subject: [PATCH 287/486] Added translation using Weblate (Czech) --- po/cs.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/cs.po diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 00000000..c36bdb25 --- /dev/null +++ b/po/cs.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 499af193b87e09e72cc52b2264e594bec028e151 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:44 +0000 Subject: [PATCH 288/486] Added translation using Weblate (English (South Africa)) --- po/en_ZA.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/en_ZA.po diff --git a/po/en_ZA.po b/po/en_ZA.po new file mode 100644 index 00000000..3590084d --- /dev/null +++ b/po/en_ZA.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_ZA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From e961c1891e34548357644fce252fa0589afcdd25 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:45 +0000 Subject: [PATCH 289/486] Added translation using Weblate (Albanian) --- po/sq.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sq.po diff --git a/po/sq.po b/po/sq.po new file mode 100644 index 00000000..16fc8858 --- /dev/null +++ b/po/sq.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 310ed20521d81907f207b4b558a6320b8dd46f2d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:45 +0000 Subject: [PATCH 290/486] Added translation using Weblate (Amharic) --- po/am.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/am.po diff --git a/po/am.po b/po/am.po new file mode 100644 index 00000000..cf9ca168 --- /dev/null +++ b/po/am.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 6eb15e9f592326c5920cdeda64686e9736837760 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:46 +0000 Subject: [PATCH 291/486] Added translation using Weblate (Kashmiri) --- po/ks.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ks.po diff --git a/po/ks.po b/po/ks.po new file mode 100644 index 00000000..5abefc6e --- /dev/null +++ b/po/ks.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ks\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7b6b31ef53909394f6c343ba5528efcaa25ed221 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:46 +0000 Subject: [PATCH 292/486] Added translation using Weblate (Lingala) --- po/ln.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ln.po diff --git a/po/ln.po b/po/ln.po new file mode 100644 index 00000000..4e7f61e0 --- /dev/null +++ b/po/ln.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ln\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 2c1255c663edab9904f77a7b7b1bc70ac104101b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:47 +0000 Subject: [PATCH 293/486] Added translation using Weblate (Somali) --- po/so.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/so.po diff --git a/po/so.po b/po/so.po new file mode 100644 index 00000000..88c142c5 --- /dev/null +++ b/po/so.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: so\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8053a0ca00938de44f9790147b93554ded1f5a7e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:47 +0000 Subject: [PATCH 294/486] Added translation using Weblate (Irish) --- po/ga.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ga.po diff --git a/po/ga.po b/po/ga.po new file mode 100644 index 00000000..faf5b91c --- /dev/null +++ b/po/ga.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a5d2ecf2165bbfe75b2aea8e221eec5e980be791 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:48 +0000 Subject: [PATCH 295/486] Added translation using Weblate (Kannada) --- po/kn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kn.po diff --git a/po/kn.po b/po/kn.po new file mode 100644 index 00000000..75a12adf --- /dev/null +++ b/po/kn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 0ed5917ad0169b005d31d487c7ac535ffcc620ba Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:48 +0000 Subject: [PATCH 296/486] Added translation using Weblate (Maltese) --- po/mt.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mt.po diff --git a/po/mt.po b/po/mt.po new file mode 100644 index 00000000..7e886075 --- /dev/null +++ b/po/mt.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1b6ac3ed924034670e39754cab01b7246ef4d407 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:48 +0000 Subject: [PATCH 297/486] Added translation using Weblate (Belarusian) --- po/be.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/be.po diff --git a/po/be.po b/po/be.po new file mode 100644 index 00000000..34255397 --- /dev/null +++ b/po/be.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c480a0f8884f0f4ab08172901eb8be314ddfc71d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:49 +0000 Subject: [PATCH 298/486] Added translation using Weblate (Kazakh) --- po/kk.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kk.po diff --git a/po/kk.po b/po/kk.po new file mode 100644 index 00000000..1dc32a1b --- /dev/null +++ b/po/kk.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c5cea99989d1eb1170f6894b513f0cf2ec292496 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:49 +0000 Subject: [PATCH 299/486] Added translation using Weblate (Asturian) --- po/ast.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ast.po diff --git a/po/ast.po b/po/ast.po new file mode 100644 index 00000000..30e4699c --- /dev/null +++ b/po/ast.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From cd08f2d113e25ca1cddf3d4d10f1d50fa01692c0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:49 +0000 Subject: [PATCH 300/486] Added translation using Weblate (Tigrinya) --- po/ti.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ti.po diff --git a/po/ti.po b/po/ti.po new file mode 100644 index 00000000..0b6d84d4 --- /dev/null +++ b/po/ti.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ti\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 92d6e5d852f9e237fa5120e4d69627a86b94ca4e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:50 +0000 Subject: [PATCH 301/486] Added translation using Weblate (Indonesian) --- po/id.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/id.po diff --git a/po/id.po b/po/id.po new file mode 100644 index 00000000..d3f135ad --- /dev/null +++ b/po/id.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b953c30aaed62b47ef604c7f8c654cf4417cf0a6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:50 +0000 Subject: [PATCH 302/486] Added translation using Weblate (Swahili) --- po/sw.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sw.po diff --git a/po/sw.po b/po/sw.po new file mode 100644 index 00000000..39728432 --- /dev/null +++ b/po/sw.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 699534ea2e08348cf0349bce4fdf1c7e9db5dbb0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:50 +0000 Subject: [PATCH 303/486] Added translation using Weblate (Burmese) --- po/my.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/my.po diff --git a/po/my.po b/po/my.po new file mode 100644 index 00000000..6da9564f --- /dev/null +++ b/po/my.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: my\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3543753e9da04d8e10be04b9144a09935f2be58b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:51 +0000 Subject: [PATCH 304/486] Added translation using Weblate (Nepali) --- po/ne.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ne.po diff --git a/po/ne.po b/po/ne.po new file mode 100644 index 00000000..b4f9dd07 --- /dev/null +++ b/po/ne.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a88cc4fcb4a26aa0ca30dee361f00834a411325d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:51 +0000 Subject: [PATCH 305/486] Added translation using Weblate (Haitian) --- po/ht.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ht.po diff --git a/po/ht.po b/po/ht.po new file mode 100644 index 00000000..ae149f4d --- /dev/null +++ b/po/ht.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ht\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 6c0ff1ac1ed814064cfd107bffbbcf16ee5b6e4b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:51 +0000 Subject: [PATCH 306/486] Added translation using Weblate (Odia) --- po/or.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/or.po diff --git a/po/or.po b/po/or.po new file mode 100644 index 00000000..31ae6f80 --- /dev/null +++ b/po/or.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: or\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From df5b41d5f92905cbc79f685abb8842c65b4c48e5 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:52 +0000 Subject: [PATCH 307/486] Added translation using Weblate (Croatian) --- po/hr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/hr.po diff --git a/po/hr.po b/po/hr.po new file mode 100644 index 00000000..08c11a5c --- /dev/null +++ b/po/hr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 35f446d3581f0ea9ab240a900fc35896a35c379e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:52 +0000 Subject: [PATCH 308/486] Added translation using Weblate (Malagasy) --- po/mg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mg.po diff --git a/po/mg.po b/po/mg.po new file mode 100644 index 00000000..027c025f --- /dev/null +++ b/po/mg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 81a0feff857e0a0b0f623e610e148549357520aa Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:52 +0000 Subject: [PATCH 309/486] Added translation using Weblate (Fulah) --- po/ff.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ff.po diff --git a/po/ff.po b/po/ff.po new file mode 100644 index 00000000..2a40cffe --- /dev/null +++ b/po/ff.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ff\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 26d8e2868e4fad0fa46f3090d36a1a86fffdfc9d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:52 +0000 Subject: [PATCH 310/486] Added translation using Weblate (Sotho (Southern)) --- po/st.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/st.po diff --git a/po/st.po b/po/st.po new file mode 100644 index 00000000..b664054b --- /dev/null +++ b/po/st.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: st\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From db3f5e0cbc884c1131ea347e0db6fa15c5e807f2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:53 +0000 Subject: [PATCH 311/486] Added translation using Weblate (Romansh) --- po/rm.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/rm.po diff --git a/po/rm.po b/po/rm.po new file mode 100644 index 00000000..2b11ab9e --- /dev/null +++ b/po/rm.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4a77877a46cf448e8d530a2126f40df24c607be6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:53 +0000 Subject: [PATCH 312/486] Added translation using Weblate (Filipino) --- po/fil.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fil.po diff --git a/po/fil.po b/po/fil.po new file mode 100644 index 00000000..1be1b38a --- /dev/null +++ b/po/fil.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fil\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 58b45f3c83f938c8f5580a61c96e93bb45ed259a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:53 +0000 Subject: [PATCH 313/486] Added translation using Weblate (Kurdish) --- po/ku.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ku.po diff --git a/po/ku.po b/po/ku.po new file mode 100644 index 00000000..f28c578d --- /dev/null +++ b/po/ku.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ku\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8a9212f042528f7c973935d36cf3b909d0354bd1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:54 +0000 Subject: [PATCH 314/486] Added translation using Weblate (Hungarian) --- po/hu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/hu.po diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 00000000..0a18b331 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b57735c07cd495c0cea65789efb9fa30e4185e47 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:54 +0000 Subject: [PATCH 315/486] Added translation using Weblate (Sinhala) --- po/si.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/si.po diff --git a/po/si.po b/po/si.po new file mode 100644 index 00000000..21b53629 --- /dev/null +++ b/po/si.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From dd8e2c0c80e904c83444e523d079c52c2f135a62 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:55 +0000 Subject: [PATCH 316/486] Added translation using Weblate (Afrikaans) --- po/af.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/af.po diff --git a/po/af.po b/po/af.po new file mode 100644 index 00000000..0742244f --- /dev/null +++ b/po/af.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From fc569f1f2bdc4ed0a3f93dece2cbe869b3d4640f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:56 +0000 Subject: [PATCH 317/486] Added translation using Weblate (Latvian) --- po/lv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/lv.po diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 00000000..c8de37fd --- /dev/null +++ b/po/lv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b3da53faf11182344fb6e77fc91a4fb426a0bcb2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:56 +0000 Subject: [PATCH 318/486] Added translation using Weblate (Yoruba) --- po/yo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/yo.po diff --git a/po/yo.po b/po/yo.po new file mode 100644 index 00000000..ab9e4525 --- /dev/null +++ b/po/yo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From ca66aa6abf7affafefee3e24b2d94307224843ed Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:56 +0000 Subject: [PATCH 319/486] Added translation using Weblate (Welsh) --- po/cy.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/cy.po diff --git a/po/cy.po b/po/cy.po new file mode 100644 index 00000000..551b27a0 --- /dev/null +++ b/po/cy.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1ea7e92f298450141ebabb3027ead4e8c26640df Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:57 +0000 Subject: [PATCH 320/486] Added translation using Weblate (Papiamento) --- po/pap.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/pap.po diff --git a/po/pap.po b/po/pap.po new file mode 100644 index 00000000..2e08fc41 --- /dev/null +++ b/po/pap.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pap\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 86be0bb6cc1419a9fd6e5d14a83851792b27050f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:57 +0000 Subject: [PATCH 321/486] Added translation using Weblate (Interlingua) --- po/ia.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ia.po diff --git a/po/ia.po b/po/ia.po new file mode 100644 index 00000000..dab27bb4 --- /dev/null +++ b/po/ia.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 2ac5ff3457fd0dc3da5dd440349848a18d13271c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:58 +0000 Subject: [PATCH 322/486] Added translation using Weblate (Assamese) --- po/as.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/as.po diff --git a/po/as.po b/po/as.po new file mode 100644 index 00000000..30753e8b --- /dev/null +++ b/po/as.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: as\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4f0c912d83693683db0b8ce3b7caf9420f3e64fb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:58 +0000 Subject: [PATCH 323/486] Added translation using Weblate (Akan) --- po/ak.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ak.po diff --git a/po/ak.po b/po/ak.po new file mode 100644 index 00000000..12d56e67 --- /dev/null +++ b/po/ak.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ak\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From bb0f13887157bdad54046131f948d5d755da13bb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:59 +0000 Subject: [PATCH 324/486] Added translation using Weblate (Venda) --- po/ve.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ve.po diff --git a/po/ve.po b/po/ve.po new file mode 100644 index 00000000..8d0157de --- /dev/null +++ b/po/ve.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ve\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3e8ad10801df177992d0248fb9b96c284cd056b2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:59 +0000 Subject: [PATCH 325/486] Added translation using Weblate (Korean) --- po/ko.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ko.po diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 00000000..0b7ece44 --- /dev/null +++ b/po/ko.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7c711a713f7c04d8566e3f27caf7b574c2c5d647 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:59 +0000 Subject: [PATCH 326/486] Added translation using Weblate (Frisian) --- po/fy.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fy.po diff --git a/po/fy.po b/po/fy.po new file mode 100644 index 00000000..8b234d05 --- /dev/null +++ b/po/fy.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 0f02aab1cd77031e87ce1a313d7a2e5e68ddc39b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:46:59 +0000 Subject: [PATCH 327/486] Added translation using Weblate (Turkmen) --- po/tk.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tk.po diff --git a/po/tk.po b/po/tk.po new file mode 100644 index 00000000..54e6666c --- /dev/null +++ b/po/tk.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From ea2659de2e3ad15ce77dc85cf7e59b36cc42c895 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:00 +0000 Subject: [PATCH 328/486] Added translation using Weblate (Tibetan) --- po/bo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bo.po diff --git a/po/bo.po b/po/bo.po new file mode 100644 index 00000000..7027bb1a --- /dev/null +++ b/po/bo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 613054a85cfd721b1da492556b39307146c4b5b5 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:00 +0000 Subject: [PATCH 329/486] Added translation using Weblate (Faroese) --- po/fo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fo.po diff --git a/po/fo.po b/po/fo.po new file mode 100644 index 00000000..e590fc9a --- /dev/null +++ b/po/fo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From e8482b00ce58b21b1bbc6de9da489dbe228566d8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:01 +0000 Subject: [PATCH 330/486] Added translation using Weblate (Malay) --- po/ms.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ms.po diff --git a/po/ms.po b/po/ms.po new file mode 100644 index 00000000..cf3e0543 --- /dev/null +++ b/po/ms.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From cc7d9cee73467c53754d904751222044eec4ae1a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:01 +0000 Subject: [PATCH 331/486] Added translation using Weblate (Tajik) --- po/tg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tg.po diff --git a/po/tg.po b/po/tg.po new file mode 100644 index 00000000..3824c7ae --- /dev/null +++ b/po/tg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c63c8f6000c605b523cfbebee3ab2d4dc3680d16 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:02 +0000 Subject: [PATCH 332/486] Added translation using Weblate (Occitan) --- po/oc.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/oc.po diff --git a/po/oc.po b/po/oc.po new file mode 100644 index 00000000..b001745c --- /dev/null +++ b/po/oc.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From ef86a30f0d74a752f39f1923a57e592c338e3aa0 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:02 +0000 Subject: [PATCH 333/486] Added translation using Weblate (Thai) --- po/th.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/th.po diff --git a/po/th.po b/po/th.po new file mode 100644 index 00000000..2ab3d2fc --- /dev/null +++ b/po/th.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b58409ebb49d4193c1bf4b758dae6f29431f1b09 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:02 +0000 Subject: [PATCH 334/486] Added translation using Weblate (Bosnian) --- po/bs.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bs.po diff --git a/po/bs.po b/po/bs.po new file mode 100644 index 00000000..bdd576db --- /dev/null +++ b/po/bs.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From efcbde47a626f2c4b96d04571218660c2f8538ba Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:03 +0000 Subject: [PATCH 335/486] Added translation using Weblate (Cornish) --- po/kw.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kw.po diff --git a/po/kw.po b/po/kw.po new file mode 100644 index 00000000..0d81556b --- /dev/null +++ b/po/kw.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 9ac26356437fb04b1b8f66400056dffdf703e0aa Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:03 +0000 Subject: [PATCH 336/486] Added translation using Weblate (Kinyarwanda) --- po/rw.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/rw.po diff --git a/po/rw.po b/po/rw.po new file mode 100644 index 00000000..56f92025 --- /dev/null +++ b/po/rw.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b3fbd9945271d016515dc6765a1c03343298380f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:04 +0000 Subject: [PATCH 337/486] Added translation using Weblate (Wolof) --- po/wo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/wo.po diff --git a/po/wo.po b/po/wo.po new file mode 100644 index 00000000..8a307730 --- /dev/null +++ b/po/wo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 7c3c9e448bfe262eed5ec222925a8e46f775ad8e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:04 +0000 Subject: [PATCH 338/486] Added translation using Weblate (Galician) --- po/gl.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/gl.po diff --git a/po/gl.po b/po/gl.po new file mode 100644 index 00000000..a07f72df --- /dev/null +++ b/po/gl.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From f94375729ca83a07261bf2043d9c782b823f0ff9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:04 +0000 Subject: [PATCH 339/486] Added translation using Weblate (Azerbaijani) --- po/az.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/az.po diff --git a/po/az.po b/po/az.po new file mode 100644 index 00000000..fd632d5b --- /dev/null +++ b/po/az.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From fd1a6eb7d2e67167a20fb55ea34a75762dd8b600 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:04 +0000 Subject: [PATCH 340/486] Added translation using Weblate (Sundanese) --- po/su.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/su.po diff --git a/po/su.po b/po/su.po new file mode 100644 index 00000000..560c6627 --- /dev/null +++ b/po/su.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: su\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c18e13a2c782f061eda84a803f72b6e9aeca1c12 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:05 +0000 Subject: [PATCH 341/486] Added translation using Weblate (Limburgish) --- po/li.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/li.po diff --git a/po/li.po b/po/li.po new file mode 100644 index 00000000..ce90311c --- /dev/null +++ b/po/li.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: li\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 47d44ecf21141c3b3cc6ce9fb0e88f6bfea59e8a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:05 +0000 Subject: [PATCH 342/486] Added translation using Weblate (Tagalog) --- po/tl.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tl.po diff --git a/po/tl.po b/po/tl.po new file mode 100644 index 00000000..308b085e --- /dev/null +++ b/po/tl.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1b327ecc0ed7084c5af9c96524e5b6bd467d2db2 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:05 +0000 Subject: [PATCH 343/486] Added translation using Weblate (English (Canada)) --- po/en_CA.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/en_CA.po diff --git a/po/en_CA.po b/po/en_CA.po new file mode 100644 index 00000000..bc004993 --- /dev/null +++ b/po/en_CA.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From cc9cfb53e9067ce0be2a509bfaa6f92124a9b4fe Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:06 +0000 Subject: [PATCH 344/486] Added translation using Weblate (English (Australia)) --- po/en_AU.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/en_AU.po diff --git a/po/en_AU.po b/po/en_AU.po new file mode 100644 index 00000000..4ad185a1 --- /dev/null +++ b/po/en_AU.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 14a3dea7d6a68945ed1e9586f1bcc5556e32976a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:06 +0000 Subject: [PATCH 345/486] Added translation using Weblate (Kurdish (Central)) --- po/ckb.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ckb.po diff --git a/po/ckb.po b/po/ckb.po new file mode 100644 index 00000000..38d52fde --- /dev/null +++ b/po/ckb.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ckb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From eddec97e821033238eef3470165495c8ece4b18a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:06 +0000 Subject: [PATCH 346/486] Added translation using Weblate (Chinese (zh)) --- po/zh.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/zh.po diff --git a/po/zh.po b/po/zh.po new file mode 100644 index 00000000..a6967e59 --- /dev/null +++ b/po/zh.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 12d9119394b9daae77f3ac47253c64f20f8e229d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:07 +0000 Subject: [PATCH 347/486] Added translation using Weblate (Sardinian) --- po/sc.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sc.po diff --git a/po/sc.po b/po/sc.po new file mode 100644 index 00000000..8e5dec7b --- /dev/null +++ b/po/sc.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 88ede820139ffff980e154e22aa7bc43057ea255 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:07 +0000 Subject: [PATCH 348/486] Added translation using Weblate (Norwegian (old code) (no)) --- po/no.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/no.po diff --git a/po/no.po b/po/no.po new file mode 100644 index 00000000..61060d23 --- /dev/null +++ b/po/no.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 876d12c23b9a0fc9a4365220ce5701a9d548bc19 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:07 +0000 Subject: [PATCH 349/486] Added translation using Weblate (Ossetian) --- po/os.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/os.po diff --git a/po/os.po b/po/os.po new file mode 100644 index 00000000..364d9e2b --- /dev/null +++ b/po/os.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: os\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 0c96fd1ab5487e1de4cdf1a553d1a530ee7d744f Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:07 +0000 Subject: [PATCH 350/486] Added translation using Weblate (Tsonga) --- po/ts.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ts.po diff --git a/po/ts.po b/po/ts.po new file mode 100644 index 00000000..05ec416c --- /dev/null +++ b/po/ts.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ts\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a8a57bd781bd97e0947567b14680e0317cdbd27b Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:07 +0000 Subject: [PATCH 351/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Franco-Proven=C3=A7al)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/frp.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/frp.po diff --git a/po/frp.po b/po/frp.po new file mode 100644 index 00000000..13c8ba2d --- /dev/null +++ b/po/frp.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: frp\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From df7e1a96ec91f4c6f76c2a12250787d7922f54bd Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:08 +0000 Subject: [PATCH 352/486] Added translation using Weblate (Chinese (Traditional)) --- po/zh_Hant.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/zh_Hant.po diff --git a/po/zh_Hant.po b/po/zh_Hant.po new file mode 100644 index 00000000..11eb6adc --- /dev/null +++ b/po/zh_Hant.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hant\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b953f1c2250e767b4ba9cae1afc866a4d2be3e0d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:08 +0000 Subject: [PATCH 353/486] Added translation using Weblate (Chinese (Simplified)) --- po/zh_Hans.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/zh_Hans.po diff --git a/po/zh_Hans.po b/po/zh_Hans.po new file mode 100644 index 00000000..490950b4 --- /dev/null +++ b/po/zh_Hans.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hans\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 46c733b60d5db2929cfaf40a8e82da55bde46ddd Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:08 +0000 Subject: [PATCH 354/486] Added translation using Weblate (Bashkir) --- po/ba.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ba.po diff --git a/po/ba.po b/po/ba.po new file mode 100644 index 00000000..e4ad26e4 --- /dev/null +++ b/po/ba.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 80d5e04749cfeb09804e9c267400204aff6dbcec Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:09 +0000 Subject: [PATCH 355/486] Added translation using Weblate (Yiddish) --- po/yi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/yi.po diff --git a/po/yi.po b/po/yi.po new file mode 100644 index 00000000..56db6c8a --- /dev/null +++ b/po/yi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a93f4acd7715838783aec7a6b8e5045f41698e40 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:09 +0000 Subject: [PATCH 356/486] Added translation using Weblate (Ojibwe) --- po/oj.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/oj.po diff --git a/po/oj.po b/po/oj.po new file mode 100644 index 00000000..47f96cd9 --- /dev/null +++ b/po/oj.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From e3766b41833c6fb6de84330e70a503ab9bc186a4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:09 +0000 Subject: [PATCH 357/486] Added translation using Weblate (Chamorro) --- po/ch.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ch.po diff --git a/po/ch.po b/po/ch.po new file mode 100644 index 00000000..fdb6af19 --- /dev/null +++ b/po/ch.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ch\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 591eff74765ac514f44dd4357f88aa04381a39cb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:09 +0000 Subject: [PATCH 358/486] Added translation using Weblate (Cree) --- po/cr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/cr.po diff --git a/po/cr.po b/po/cr.po new file mode 100644 index 00000000..8aac30ab --- /dev/null +++ b/po/cr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3ae848ace3d2fb60d0b8af438509c1fc4cdb212c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:10 +0000 Subject: [PATCH 359/486] Added translation using Weblate (Nyanja) --- po/ny.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ny.po diff --git a/po/ny.po b/po/ny.po new file mode 100644 index 00000000..f80bf9aa --- /dev/null +++ b/po/ny.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ny\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c6c0c5c39986025646587cdaf74e74a205b2204c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:10 +0000 Subject: [PATCH 360/486] Added translation using Weblate (Latin) --- po/la.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/la.po diff --git a/po/la.po b/po/la.po new file mode 100644 index 00000000..e4af9c47 --- /dev/null +++ b/po/la.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: la\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 792aae8cf8d589d184250f71623a5e1cd9c15d66 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:10 +0000 Subject: [PATCH 361/486] Added translation using Weblate (French (Canada)) --- po/fr_CA.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fr_CA.po diff --git a/po/fr_CA.po b/po/fr_CA.po new file mode 100644 index 00000000..8354de4c --- /dev/null +++ b/po/fr_CA.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8f7c123f7a65b8979df62d7ed7a5a9a8c6453d8a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:11 +0000 Subject: [PATCH 362/486] Added translation using Weblate (Igbo) --- po/ig.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ig.po diff --git a/po/ig.po b/po/ig.po new file mode 100644 index 00000000..afa6308d --- /dev/null +++ b/po/ig.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ig\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3597d48a50d89e6bf3ccab800a43cf28ddf23602 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:11 +0000 Subject: [PATCH 363/486] Added translation using Weblate (Shona) --- po/sn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sn.po diff --git a/po/sn.po b/po/sn.po new file mode 100644 index 00000000..cac6a214 --- /dev/null +++ b/po/sn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From fd5505640cabca30010b3f4e8d10560feb902cd9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:11 +0000 Subject: [PATCH 364/486] Added translation using Weblate (Dhivehi) --- po/dv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/dv.po diff --git a/po/dv.po b/po/dv.po new file mode 100644 index 00000000..cbce870e --- /dev/null +++ b/po/dv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c4702b458ee14984f76b8cc11a0c1d56e4215469 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:11 +0000 Subject: [PATCH 365/486] Added translation using Weblate (Avestan) --- po/ae.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ae.po diff --git a/po/ae.po b/po/ae.po new file mode 100644 index 00000000..c1986c47 --- /dev/null +++ b/po/ae.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ae\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 9efa901c0b0da75cfd73854b955f4f5a05c64351 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:12 +0000 Subject: [PATCH 366/486] Added translation using Weblate (Avaric) --- po/av.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/av.po diff --git a/po/av.po b/po/av.po new file mode 100644 index 00000000..50f60420 --- /dev/null +++ b/po/av.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: av\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 90b9187cdef404029079dd333829731881c55247 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:12 +0000 Subject: [PATCH 367/486] Added translation using Weblate (Bihari) --- po/bh.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bh.po diff --git a/po/bh.po b/po/bh.po new file mode 100644 index 00000000..97b78fe4 --- /dev/null +++ b/po/bh.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 26c621431021934c59891b31bb45fa9aaba51987 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:12 +0000 Subject: [PATCH 368/486] Added translation using Weblate (Bislama) --- po/bi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bi.po diff --git a/po/bi.po b/po/bi.po new file mode 100644 index 00000000..4bcb94fe --- /dev/null +++ b/po/bi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 24ca0522f4705b6722d500d9b97b5d17092f742e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:12 +0000 Subject: [PATCH 369/486] Added translation using Weblate (Bambara) --- po/bm.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/bm.po diff --git a/po/bm.po b/po/bm.po new file mode 100644 index 00000000..0d8ca009 --- /dev/null +++ b/po/bm.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From d5ba7978345c3184ed9a1149bd041257c1a8e895 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:13 +0000 Subject: [PATCH 370/486] Added translation using Weblate (Chechen) --- po/ce.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ce.po diff --git a/po/ce.po b/po/ce.po new file mode 100644 index 00000000..0c868534 --- /dev/null +++ b/po/ce.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ce\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a3df6df9b34fd88d67dcdbfcffd7da0c7a027b60 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:13 +0000 Subject: [PATCH 371/486] Added translation using Weblate (Corsican) --- po/co.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/co.po diff --git a/po/co.po b/po/co.po new file mode 100644 index 00000000..baeccc79 --- /dev/null +++ b/po/co.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: co\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8f9ffae11acf20edb19cd4c091317633dc5799de Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:13 +0000 Subject: [PATCH 372/486] Added translation using Weblate (Slavonic (Old Church)) --- po/cu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/cu.po diff --git a/po/cu.po b/po/cu.po new file mode 100644 index 00000000..68868254 --- /dev/null +++ b/po/cu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 749b5ef81f6a2fc358eae7a91d236fda8ad19ebc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:14 +0000 Subject: [PATCH 373/486] Added translation using Weblate (Chuvash) --- po/cv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/cv.po diff --git a/po/cv.po b/po/cv.po new file mode 100644 index 00000000..e232059e --- /dev/null +++ b/po/cv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 080cd0b6d7cfb557b18a185d90685a4cd8a75ebc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:14 +0000 Subject: [PATCH 374/486] Added translation using Weblate (Ewe) --- po/ee.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ee.po diff --git a/po/ee.po b/po/ee.po new file mode 100644 index 00000000..b4867f24 --- /dev/null +++ b/po/ee.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ee\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 210227bd831781e2668734d7c455c4230080aab3 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:14 +0000 Subject: [PATCH 375/486] Added translation using Weblate (Fijian) --- po/fj.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/fj.po diff --git a/po/fj.po b/po/fj.po new file mode 100644 index 00000000..a855c6c2 --- /dev/null +++ b/po/fj.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1b03b18eb6f87c8ad89d46f032fae3efd2c3fd9a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:15 +0000 Subject: [PATCH 376/486] Added translation using Weblate (Manx) --- po/gv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/gv.po diff --git a/po/gv.po b/po/gv.po new file mode 100644 index 00000000..a83f8309 --- /dev/null +++ b/po/gv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c20e95a242370914af5b9d662b74ad4ce0491cde Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:15 +0000 Subject: [PATCH 377/486] Added translation using Weblate (Hiri Motu) --- po/ho.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ho.po diff --git a/po/ho.po b/po/ho.po new file mode 100644 index 00000000..2e97fee9 --- /dev/null +++ b/po/ho.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ho\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 655c6451f1a537690b33ddac5409508d07a71661 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:15 +0000 Subject: [PATCH 378/486] Added translation using Weblate (Herero) --- po/hz.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/hz.po diff --git a/po/hz.po b/po/hz.po new file mode 100644 index 00000000..9bfb38e1 --- /dev/null +++ b/po/hz.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 859591939a8a9c6611bc426fed5ed89c8fb4f4d7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:15 +0000 Subject: [PATCH 379/486] Added translation using Weblate (Occidental) --- po/ie.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ie.po diff --git a/po/ie.po b/po/ie.po new file mode 100644 index 00000000..15f5b940 --- /dev/null +++ b/po/ie.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ie\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 1cb679e1ae7ccd491ddcdd213dc4bfad7e5b5a1d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:16 +0000 Subject: [PATCH 380/486] Added translation using Weblate (Nuosu) --- po/ii.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ii.po diff --git a/po/ii.po b/po/ii.po new file mode 100644 index 00000000..fa22153c --- /dev/null +++ b/po/ii.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ii\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From bbe1f5a555e55f8700c88669c55dcd48d882f523 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:16 +0000 Subject: [PATCH 381/486] Added translation using Weblate (Inupiaq) --- po/ik.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ik.po diff --git a/po/ik.po b/po/ik.po new file mode 100644 index 00000000..9c8135bb --- /dev/null +++ b/po/ik.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ik\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8975a134ba0f2ab5151415f38dee2801e9ac2348 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:16 +0000 Subject: [PATCH 382/486] Added translation using Weblate (Ido) --- po/io.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/io.po diff --git a/po/io.po b/po/io.po new file mode 100644 index 00000000..5edefa2a --- /dev/null +++ b/po/io.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: io\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 06be24d0fadd81962122d086f551213e01832beb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:17 +0000 Subject: [PATCH 383/486] Added translation using Weblate (Inuktitut) --- po/iu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/iu.po diff --git a/po/iu.po b/po/iu.po new file mode 100644 index 00000000..1cd21eaf --- /dev/null +++ b/po/iu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: iu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 911af5c692bade7427d19acf2e902a23740d5033 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:17 +0000 Subject: [PATCH 384/486] Added translation using Weblate (Kongo) --- po/kg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kg.po diff --git a/po/kg.po b/po/kg.po new file mode 100644 index 00000000..e21e27b1 --- /dev/null +++ b/po/kg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From ae4fb207e0a274e265a1b9aad401351c06b805cb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:17 +0000 Subject: [PATCH 385/486] Added translation using Weblate (Gikuyu) --- po/ki.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ki.po diff --git a/po/ki.po b/po/ki.po new file mode 100644 index 00000000..d1f7b57c --- /dev/null +++ b/po/ki.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ki\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a0220cb2141da7a6665a1015a0644a85e74b6da5 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:18 +0000 Subject: [PATCH 386/486] Added translation using Weblate (Kwanyama) --- po/kj.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kj.po diff --git a/po/kj.po b/po/kj.po new file mode 100644 index 00000000..f7b96165 --- /dev/null +++ b/po/kj.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 53907c7bec69ca8a4e209f2f4709ff80fd9972dc Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:18 +0000 Subject: [PATCH 387/486] Added translation using Weblate (Kanuri) --- po/kr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kr.po diff --git a/po/kr.po b/po/kr.po new file mode 100644 index 00000000..3c9768a5 --- /dev/null +++ b/po/kr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 29f3db4adc9522c7f707a3209dd4f32c0d786651 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:19 +0000 Subject: [PATCH 388/486] Added translation using Weblate (Komi) --- po/kv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/kv.po diff --git a/po/kv.po b/po/kv.po new file mode 100644 index 00000000..7fc2cbad --- /dev/null +++ b/po/kv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 83e0ce2fac90149e21928ee861d213ea80b1d7da Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:19 +0000 Subject: [PATCH 389/486] Added translation using Weblate (Luganda) --- po/lg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/lg.po diff --git a/po/lg.po b/po/lg.po new file mode 100644 index 00000000..74490822 --- /dev/null +++ b/po/lg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a19501bbd419a2dc26aea54322faf4ffc90e9b62 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:20 +0000 Subject: [PATCH 390/486] Added translation using Weblate (Luba-Katanga) --- po/lu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/lu.po diff --git a/po/lu.po b/po/lu.po new file mode 100644 index 00000000..9eb2ed11 --- /dev/null +++ b/po/lu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b071239f8f804fdb2293c2449734c8e8a53adfe4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:20 +0000 Subject: [PATCH 391/486] Added translation using Weblate (Marshallese) --- po/mh.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mh.po diff --git a/po/mh.po b/po/mh.po new file mode 100644 index 00000000..ac4f8dfb --- /dev/null +++ b/po/mh.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 389fcd33667e8e089864cb720a9887c9def875b6 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:21 +0000 Subject: [PATCH 392/486] Added translation using Weblate (Moldovan (mo)) --- po/mo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/mo.po diff --git a/po/mo.po b/po/mo.po new file mode 100644 index 00000000..bf036eed --- /dev/null +++ b/po/mo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 78c751e2c510b9f779bded2630a0a75131190743 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:21 +0000 Subject: [PATCH 393/486] Added translation using Weblate (Nauru) --- po/na.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/na.po diff --git a/po/na.po b/po/na.po new file mode 100644 index 00000000..eee085eb --- /dev/null +++ b/po/na.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: na\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 6c5be74c11c2fa34fd4c0c352f9b5fc06066c6cb Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:22 +0000 Subject: [PATCH 394/486] Added translation using Weblate (Ndebele (Northern)) --- po/nd.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/nd.po diff --git a/po/nd.po b/po/nd.po new file mode 100644 index 00000000..f509f03d --- /dev/null +++ b/po/nd.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3bfa3ac6de1b4cdb9afb9f529c49f448dc052aaf Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:22 +0000 Subject: [PATCH 395/486] Added translation using Weblate (Ndonga) --- po/ng.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ng.po diff --git a/po/ng.po b/po/ng.po new file mode 100644 index 00000000..5fad0bfb --- /dev/null +++ b/po/ng.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ng\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From d126f4b3de7e90b0ebb12151c6b97208a358e466 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:23 +0000 Subject: [PATCH 396/486] Added translation using Weblate (Ndebele (Southern)) --- po/nr.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/nr.po diff --git a/po/nr.po b/po/nr.po new file mode 100644 index 00000000..7f145dac --- /dev/null +++ b/po/nr.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 0efc1ed4d6f263d02e23c4083378e0fefa6f803d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:23 +0000 Subject: [PATCH 397/486] Added translation using Weblate (Navaho) --- po/nv.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/nv.po diff --git a/po/nv.po b/po/nv.po new file mode 100644 index 00000000..b4ae73c8 --- /dev/null +++ b/po/nv.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4354098ad6544f765b2b8a240fdab95de57671b7 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:23 +0000 Subject: [PATCH 398/486] Added translation using Weblate (Oromo) --- po/om.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/om.po diff --git a/po/om.po b/po/om.po new file mode 100644 index 00000000..f09b2c6f --- /dev/null +++ b/po/om.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: om\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 51e5f5aec8b18252db782b3219c7afcbf86ed5b8 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:24 +0000 Subject: [PATCH 399/486] Added translation using Weblate (Pali) --- po/pi.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/pi.po diff --git a/po/pi.po b/po/pi.po new file mode 100644 index 00000000..ccc628a8 --- /dev/null +++ b/po/pi.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 039f6ecc62d4a8d367c85a989f6572cfccd8b828 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:24 +0000 Subject: [PATCH 400/486] Added translation using Weblate (Quechua) --- po/qu.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/qu.po diff --git a/po/qu.po b/po/qu.po new file mode 100644 index 00000000..e2345727 --- /dev/null +++ b/po/qu.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: qu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4a3093f5fb95ec3be24c310a3331df560f591a6c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:25 +0000 Subject: [PATCH 401/486] Added translation using Weblate (Rundi) --- po/rn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/rn.po diff --git a/po/rn.po b/po/rn.po new file mode 100644 index 00000000..530a6708 --- /dev/null +++ b/po/rn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From a0fb9f0ad25fbb8b4f996caaf0f9f45c71b02238 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:25 +0000 Subject: [PATCH 402/486] Added translation using Weblate (Rusyn) --- po/rue.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/rue.po diff --git a/po/rue.po b/po/rue.po new file mode 100644 index 00000000..9d811f30 --- /dev/null +++ b/po/rue.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rue\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 2086bc23b524fc2936426116afd2978049fc3ab1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:25 +0000 Subject: [PATCH 403/486] Added translation using Weblate (Sango) --- po/sg.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sg.po diff --git a/po/sg.po b/po/sg.po new file mode 100644 index 00000000..8f2ec240 --- /dev/null +++ b/po/sg.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From d56902f6a3cbe8fdca89850725e74579d24cc9ff Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:26 +0000 Subject: [PATCH 404/486] Added translation using Weblate (Samoan) --- po/sm.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sm.po diff --git a/po/sm.po b/po/sm.po new file mode 100644 index 00000000..2cce0e25 --- /dev/null +++ b/po/sm.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 9ba7c3c21aaae6ebbe6749b95f68d5ad8ce34c22 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:26 +0000 Subject: [PATCH 405/486] Added translation using Weblate (Sami (Southern)) --- po/sma.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sma.po diff --git a/po/sma.po b/po/sma.po new file mode 100644 index 00000000..12a16808 --- /dev/null +++ b/po/sma.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sma\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From b99e886f0e946f1a09fbbf6f56143ae0c55e9217 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:26 +0000 Subject: [PATCH 406/486] Added translation using Weblate (Swati) --- po/ss.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ss.po diff --git a/po/ss.po b/po/ss.po new file mode 100644 index 00000000..2d87f4a7 --- /dev/null +++ b/po/ss.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ss\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c9cc914630aedb4ba4273d589a0db9df74e2364e Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:27 +0000 Subject: [PATCH 407/486] Added translation using Weblate (Tswana) --- po/tn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tn.po diff --git a/po/tn.po b/po/tn.po new file mode 100644 index 00000000..05ecc563 --- /dev/null +++ b/po/tn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 52b26d22f40f17dfa79c352a30a90ee172f9f4c4 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:27 +0000 Subject: [PATCH 408/486] Added translation using Weblate (Tongan) --- po/to.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/to.po diff --git a/po/to.po b/po/to.po new file mode 100644 index 00000000..08705997 --- /dev/null +++ b/po/to.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: to\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4d97815dc1d1951a81ce1e3c1a5ff9a3e50970aa Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:27 +0000 Subject: [PATCH 409/486] Added translation using Weblate (Twi) --- po/tw.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/tw.po diff --git a/po/tw.po b/po/tw.po new file mode 100644 index 00000000..edb49d6f --- /dev/null +++ b/po/tw.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 05665c2035fc8d4e6797f6ef3bd741d06db703ad Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:28 +0000 Subject: [PATCH 410/486] Added translation using Weblate (Tahitian) --- po/ty.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ty.po diff --git a/po/ty.po b/po/ty.po new file mode 100644 index 00000000..010d7adb --- /dev/null +++ b/po/ty.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ty\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 0cc5bc444fd74a44796d2ae75630a44690482a72 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:28 +0000 Subject: [PATCH 411/486] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Volap=C3=BCk)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/vo.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/vo.po diff --git a/po/vo.po b/po/vo.po new file mode 100644 index 00000000..87ace610 --- /dev/null +++ b/po/vo.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From f93535aa8eaa18cf186be9f6d3c57f22d7bae36a Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:28 +0000 Subject: [PATCH 412/486] Added translation using Weblate (Xhosa) --- po/xh.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/xh.po diff --git a/po/xh.po b/po/xh.po new file mode 100644 index 00000000..caffe210 --- /dev/null +++ b/po/xh.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 9d129826760215cd89eacad5d6fce77dee3cbf2d Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:28 +0000 Subject: [PATCH 413/486] Added translation using Weblate (Zhuang) --- po/za.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/za.po diff --git a/po/za.po b/po/za.po new file mode 100644 index 00000000..bcd97d73 --- /dev/null +++ b/po/za.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: za\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 4208fbba9c54db504267f3a416e470f10d2ce4ea Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:29 +0000 Subject: [PATCH 414/486] Added translation using Weblate (sr (generated) (sr@latin)) --- po/sr@latin.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/sr@latin.po diff --git a/po/sr@latin.po b/po/sr@latin.po new file mode 100644 index 00000000..916a233a --- /dev/null +++ b/po/sr@latin.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 41ffb6f422e56583a790854379da44ed39ae7527 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:29 +0000 Subject: [PATCH 415/486] Added translation using Weblate (zh (generated) (zh_HK)) --- po/zh_HK.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/zh_HK.po diff --git a/po/zh_HK.po b/po/zh_HK.po new file mode 100644 index 00000000..672976d1 --- /dev/null +++ b/po/zh_HK.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From e3829c34552432d24913b5afa42e4b825fd7d482 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:29 +0000 Subject: [PATCH 416/486] Added translation using Weblate (Indonesian (id_ID)) --- po/id_ID.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/id_ID.po diff --git a/po/id_ID.po b/po/id_ID.po new file mode 100644 index 00000000..cd368871 --- /dev/null +++ b/po/id_ID.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id_ID\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From c0c38c70b5040217b9a87941a434f7fd34e74806 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:30 +0000 Subject: [PATCH 417/486] Added translation using Weblate (Acehnese) --- po/ace.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ace.po diff --git a/po/ace.po b/po/ace.po new file mode 100644 index 00000000..be6f40ef --- /dev/null +++ b/po/ace.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ace\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 81fc37747af01f361af8d51f84399e3bee139df1 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:30 +0000 Subject: [PATCH 418/486] Added translation using Weblate (Aragonese) --- po/an.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/an.po diff --git a/po/an.po b/po/an.po new file mode 100644 index 00000000..89d0d563 --- /dev/null +++ b/po/an.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: an\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From bb2236d60e84d885ab26ddc2371340eb43d79134 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:30 +0000 Subject: [PATCH 419/486] Added translation using Weblate (Guarani) --- po/gn.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/gn.po diff --git a/po/gn.po b/po/gn.po new file mode 100644 index 00000000..aa4a70e9 --- /dev/null +++ b/po/gn.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From eade61b0d3e39169ed69a37d2045bf53d8e2ce5c Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:31 +0000 Subject: [PATCH 420/486] Added translation using Weblate (Afar) --- po/aa.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/aa.po diff --git a/po/aa.po b/po/aa.po new file mode 100644 index 00000000..af9c3cc5 --- /dev/null +++ b/po/aa.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: aa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 3fa7b2f532fe84ea98d49ec135c030fd9305e7f9 Mon Sep 17 00:00:00 2001 From: Languages add-on Date: Wed, 9 Oct 2024 14:47:31 +0000 Subject: [PATCH 421/486] Added translation using Weblate (Abkhazian) --- po/ab.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 po/ab.po diff --git a/po/ab.po b/po/ab.po new file mode 100644 index 00000000..b8c30509 --- /dev/null +++ b/po/ab.po @@ -0,0 +1,475 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.stsdc.monitor package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: com.github.stsdc.monitor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +msgid "Monitor" +msgstr "" + +#: src/MainWindow.vala:39 +msgid "Processes" +msgstr "" + +#: src/MainWindow.vala:40 +msgid "System" +msgstr "" + +#: src/MainWindow.vala:43 +msgid "Containers" +msgstr "" + +#: src/Utils.vala:2 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:24 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:25 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:29 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:30 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 +msgid "N/A" +msgstr "" + +#: src/Utils.vala:76 +msgid "B" +msgstr "" + +#: src/Utils.vala:81 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 +msgid "KiB" +msgstr "" + +#: src/Utils.vala:87 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 +msgid "MiB" +msgstr "" + +#: src/Utils.vala:92 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 +#: src/Widgets/Statusbar/Statusbar.vala:98 +msgid "GiB" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:13 +msgid "Show Monitor" +msgstr "" + +#: src/Indicator/Widgets/PopoverWidget.vala:16 +msgid "Quit Monitor" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 +msgid "Are you sure you want to do this?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 +msgid "Yes" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 +msgid "No" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 +msgid "PID" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 +msgid "NI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 +msgid "PRI" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 +msgid "THR" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 +msgid "The app is waiting in an uninterruptible disk sleep" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 +msgid "Idle kernel thread" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 +msgid "The process is running or runnable (on run queue)" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 +msgid "" +"The process is in an interruptible sleep; waiting for an event to complete" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 +msgid "The process is stopped by a job control signal" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 +msgid "The process is stopped stopped by a debugger during the tracing" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 +msgid "The app is terminated but not reaped by its parent" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 +msgid "Opened files" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 +msgid "Characters" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 +msgid "System calls" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 +msgid "Read/Written" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 +msgid "Cancelled write" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 +msgid "End Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 +msgid "End selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 +msgid "Kill Process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 +msgid "Kill selected process" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 +msgid "Confirm kill of the process?" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 +msgid "Confirm end of the process?" +msgstr "" + +#. *INDENT-OFF* +#. vala-lint=space-before-paren, +#. *INDENT-ON* +#. setup name column +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 +msgid "Process Name" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 +#: src/Widgets/Statusbar/Statusbar.vala:10 +msgid "CPU" +msgstr "" + +#: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 +#: src/Views/SystemView/SystemMemoryView.vala:13 +#: src/Widgets/Statusbar/Statusbar.vala:14 +msgid "Memory" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 +#, c-format +msgid "CPU: %.1f%%" +msgstr "" + +#: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 +#, c-format +msgid "RAM: %.1f%%" +msgstr "" + +#. status: "Spinning", +#. header: "General Preferences", +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/SystemView/SystemCPUInfoPopover.vala:21 +msgid "General" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +msgid "Start in background:" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +msgid "Draw smooth lines on CPU chart (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +msgid "Update every (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +msgid "1s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +msgid "2s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +msgid "3s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +msgid "4s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +msgid "5s" +msgstr "" + +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 +msgid "Show containers tab (requires restart):" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 +msgid "Show indicator in Wingpanel" +msgstr "" + +#. header: "Simple Pages", +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 +msgid "Indicator" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 +msgid "Display CPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 +msgid "Display CPU frequency" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 +msgid "Display CPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 +msgid "Display RAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 +msgid "Display network upload" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 +msgid "Display network download" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 +msgid "Display GPU percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 +msgid "Display VRAM percentage" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 +msgid "Display GPU temperature" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 +msgid "Enabled" +msgstr "" + +#: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 +msgid "Disabled" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:17 +msgid "Frequency" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:21 +msgid "Temperature" +msgstr "" + +#. int temperature_index = 0; +#. foreach (var temperature in cpu.paths_temperatures.values) { +#. debug (temperature.input); +#. cpu_temperature_chart.update (temperature_index, int.parse (temperature.input) / 1000); +#. temperature_index++; +#. }] +#: src/Views/SystemView/SystemCPUView.vala:80 +#: src/Views/SystemView/SystemGPUView.vala:79 +msgid "℃" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:126 +#: src/Widgets/Statusbar/Statusbar.vala:84 +msgid "GHz" +msgstr "" + +#: src/Views/SystemView/SystemCPUView.vala:153 +msgid "THREADS" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:22 +msgid "Features" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:23 +msgid "Bugs" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:51 +msgid "Model:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:52 +msgid "Family:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:53 +msgid "Microcode ver.:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:54 +msgid "Bogomips:" +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:58 +msgid "L1 Instruction cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:62 +msgid "L1 Data cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:66 +msgid "L1 cache: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:69 +msgid "L2 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:72 +msgid "L3 Cache size: " +msgstr "" + +#: src/Views/SystemView/SystemCPUInfoPopover.vala:75 +msgid "Address sizes: " +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:5 +msgid "Buffered" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:6 +msgid "Cached" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:7 +msgid "Locked" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:8 +msgid "Total" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:9 +msgid "Used" +msgstr "" + +#: src/Views/SystemView/SystemMemoryView.vala:10 +msgid "Shared" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:18 +msgid "Network" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:20 +msgid "DOWN" +msgstr "" + +#: src/Views/SystemView/SystemNetworkView.vala:24 +msgid "UP" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:20 +msgid "Storage" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:22 +msgid "WRITE" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:26 +msgid "READ" +msgstr "" + +#: src/Views/SystemView/SystemStorageView.vala:92 +msgid "Not mounted" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:12 +msgid "VRAM" +msgstr "" + +#: src/Views/SystemView/SystemGPUView.vala:16 +msgid "TEMPERATURE" +msgstr "" + +#: src/Widgets/Headerbar/Headerbar.vala:22 +msgid "Settings" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:12 +msgid "Search Process" +msgstr "" + +#: src/Widgets/Headerbar/Search.vala:13 +msgid "Type process name or PID to search" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:18 +msgid "Swap" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:22 +msgid "GPU" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:25 +#: src/Widgets/Statusbar/Statusbar.vala:31 +#: src/Widgets/Statusbar/Statusbar.vala:38 +#: src/Widgets/Statusbar/Statusbar.vala:45 +msgid "Calculating…" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:52 +msgid "🇺🇦" +msgstr "" + +#: src/Widgets/Statusbar/Statusbar.vala:53 +msgid "Check on Github" +msgstr "" + +#: src/Widgets/WidgetResource/WidgetResource.vala:11 +msgid "UTILIZATION" +msgstr "" From 8d12c775d186274c2893ebac58f5f1747e78dc3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 20:29:20 +0200 Subject: [PATCH 422/486] Update actions (#378) --- .github/workflows/ci.yml | 50 +++++++++++++++++++++++ .github/workflows/gettext.yml | 24 +++++++++++ .github/workflows/lint.yml | 17 -------- .github/workflows/main.yml | 33 --------------- .github/workflows/publish-copr.yml | 54 ------------------------- .github/workflows/publish-launchpad.yml | 54 ------------------------- .github/workflows/release.yml | 18 +++++++++ 7 files changed, 92 insertions(+), 158 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/gettext.yml delete mode 100644 .github/workflows/lint.yml delete mode 100644 .github/workflows/main.yml delete mode 100644 .github/workflows/publish-copr.yml delete mode 100644 .github/workflows/publish-launchpad.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..12a2fdb0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,50 @@ +name: CI + +on: + pull_request: + types: + - opened + - reopened + - synchronize + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + version: [stable, unstable, development-target] + container: + image: ghcr.io/elementary/docker:${{ matrix.version }} + + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Install Dependencies + run: | + apt update + apt install -y libgala-dev libgee-0.8-dev libglib2.0-dev libgranite-dev libgtk-3-dev libhandy-1-dev \ + libdbus-glib-1-dev libwnck-3-dev libgtop2-dev libwingpanel-3.0-dev libudisks2-dev \ + libxnvctrl0 libxnvctrl-dev libcurl4-gnutls-dev libflatpak-dev libjson-glib-dev \ + meson valac sassc git + - name: Build + run: | + meson setup build + meson compile -C build + # Tests disabled since it starts to test live-chart and some tests fail there + # meson test -C build --print-errorlogs + meson install -C build + + lint: + runs-on: ubuntu-latest + + container: + image: valalang/lint + + steps: + - uses: actions/checkout@v4 + - name: Lint + run: io.elementary.vala-lint -d . \ No newline at end of file diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml new file mode 100644 index 00000000..14cb70ed --- /dev/null +++ b/.github/workflows/gettext.yml @@ -0,0 +1,24 @@ +name: Gettext Updates + +on: + push: + branches: [dev] + +jobs: + build: + runs-on: ubuntu-22.04 + container: + image: ghcr.io/elementary/docker:next-unstable + + steps: + - name: Clone repository + uses: actions/checkout@v4 + with: + token: ${{ secrets.GIT_USER_TOKEN }} + + - name: Update Translation Files + uses: elementary/actions/gettext-template@main + env: + GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} + GIT_USER_NAME: "elementaryBot" + GIT_USER_EMAIL: "builds@elementary.io" \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index f784c9c9..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Lint - -on: [push, pull_request] - -jobs: - - lint: - runs-on: ubuntu-latest - container: - image: valalang/lint - - steps: - - uses: actions/checkout@v1 - with: - submodules: false - - name: Lint - run: io.elementary.vala-lint -d . diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 56c5845e..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build - -on: [push, pull_request] - -jobs: - - build: - - runs-on: ubuntu-latest - - container: - image: elementary/docker:unstable - - steps: - - uses: actions/checkout@v1 - with: - submodules: true - - - name: Install Dependencies - run: | - apt update - apt install -y libgala-dev libgee-0.8-dev libglib2.0-dev libgranite-dev libgtk-3-dev libhandy-1-dev - apt install -y libdbus-glib-1-dev libwnck-3-dev libgtop2-dev libwingpanel-3.0-dev libudisks2-dev - apt install -y libxnvctrl0 libxnvctrl-dev libcurl4-gnutls-dev libflatpak-dev - apt install -y meson valac sassc git - - name: Build - env: - DESTDIR: out - run: | - meson --prefix=/usr -Dindicator-wingpanel=enabled build - cd build - ninja - diff --git a/.github/workflows/publish-copr.yml b/.github/workflows/publish-copr.yml deleted file mode 100644 index 09394d17..00000000 --- a/.github/workflows/publish-copr.yml +++ /dev/null @@ -1,54 +0,0 @@ ---- -name: Publish on Copr - -on: - release: - types: [published] - -jobs: - build: - name: Submit a build for Copr - container: fedora:36 - runs-on: ubuntu-latest - - steps: - - name: Check out proper version of sources - uses: actions/checkout@v1 - with: - submodules: true - - - name: Install API token for copr-cli - env: - API_TOKEN_CONTENT: ${{ secrets.COPR_API_TOKEN }} - run: | - mkdir -p "$HOME/.config" - echo "$API_TOKEN_CONTENT" > "$HOME/.config/copr" - - # - name: Check spec for bumped version - # run: | - # grep -q ${{ github.event.release.tag_name }} spc.spec || { echo "Version not bumped!" && exit 1; } - - - name: Install tooling for source RPM build - run: | - dnf -y install @development-tools @rpm-development-tools - dnf -y install copr-cli - - - name: Archive the source - run: | - git archive --prefix "monitor/" -o "monitor.tar" HEAD - git submodule foreach --recursive "git archive --prefix=monitor/\$path/ --output=\$sha1.tar HEAD && tar --concatenate --file=$(pwd)/monitor.tar \$sha1.tar && rm \$sha1.tar" - gzip "monitor.tar" - - - name: Build the source RPM - run: | - rm -f *.src.rpm ; \ - rpmbuild \ - --define "_sourcedir `pwd`" \ - --define "_rpmdir `pwd`" \ - --define "_builddir `pwd`" \ - --define "_specdir `pwd`" \ - --define "_srcrpmdir `pwd`" \ - -bs *.spec - - - name: Submit the build by uploading the source RPM - run: copr build stsdc/monitor *.src.rpm diff --git a/.github/workflows/publish-launchpad.yml b/.github/workflows/publish-launchpad.yml deleted file mode 100644 index 9a62bf83..00000000 --- a/.github/workflows/publish-launchpad.yml +++ /dev/null @@ -1,54 +0,0 @@ ---- -name: Publish on Launchpad - -on: - release: - types: [published] - -env: - LANG: "pl_PL.UTF-8" - -jobs: - build: - name: Submit a build for Launchpad - runs-on: ubuntu-latest - container: - image: elementary/docker:stable - - steps: - - - name: Install GPG Agent - run: apt update && apt install -y gpg-agent - - - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v5 - with: - gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }} - passphrase: ${{ secrets.GPG_PASSPHRASE }} - - - name: Check out source code - uses: actions/checkout@v1 - with: - submodules: true - - # - name: Check changelog for bumped version - # run: | - # grep -q ${{ github.event.release.tag_name }} debian/changelog || { echo "Version not bumped!" && exit 1; } - - - name: Install build dependencies - run: | - apt update - apt install -y devscripts dput locales - apt install -y libgala-dev libgee-0.8-dev libglib2.0-dev libgranite-dev libgtk-3-dev libhandy-1-dev libxnvctrl0 libxnvctrl-dev - apt install -y libdbus-glib-1-dev libwnck-3-dev libgtop2-dev libwingpanel-3.0-dev appstream debhelper libudisks2-dev libcurl4-gnutls-dev libflatpak-dev - apt install -y meson valac sassc git - - - name: Set locale - run: locale-gen ${{ env.LANG }} && update-locale LANG=${{ env.LANG }} - - - name: Build the package - run: LC_ALL=${{ env.LANG }} debuild --no-lintian -S - - - name: Send to Launchpad - run: | - dput ppa:stsdc/monitor ../*_source.changes diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..8a6c795d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: Release +on: + pull_request: + branches: [ dev ] + types: closed +jobs: + release: + runs-on: ubuntu-latest + if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') + steps: + - uses: actions/checkout@v4 + - uses: elementary/actions/release@main + env: + GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" + GIT_USER_NAME: "elementaryBot" + GIT_USER_EMAIL: "builds@elementary.io" + with: + release_branch: 'noble' \ No newline at end of file From 1e3c41bce2b759c2a0390180a923134889d17d4d Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:11:26 +0200 Subject: [PATCH 423/486] Remember to clone with submodules --- .github/workflows/gettext.yml | 3 ++- .github/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index 14cb70ed..f7a96cd8 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -15,7 +15,8 @@ jobs: uses: actions/checkout@v4 with: token: ${{ secrets.GIT_USER_TOKEN }} - + with: + submodules: true - name: Update Translation Files uses: elementary/actions/gettext-template@main env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a6c795d..3cab8803 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,8 @@ jobs: if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') steps: - uses: actions/checkout@v4 + with: + submodules: true - uses: elementary/actions/release@main env: GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" From b36889e2edf0ab3e1a55c39f6996dc38945c6fa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Wed, 9 Oct 2024 12:53:40 -0700 Subject: [PATCH 424/486] Workflows/gettext: fix invalid syntax --- .github/workflows/gettext.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index f7a96cd8..1de3a55e 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -15,11 +15,10 @@ jobs: uses: actions/checkout@v4 with: token: ${{ secrets.GIT_USER_TOKEN }} - with: submodules: true - name: Update Translation Files uses: elementary/actions/gettext-template@main env: GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} GIT_USER_NAME: "elementaryBot" - GIT_USER_EMAIL: "builds@elementary.io" \ No newline at end of file + GIT_USER_EMAIL: "builds@elementary.io" From 0f41f2ab6ce574eb738aa063df662be59dad8b41 Mon Sep 17 00:00:00 2001 From: elementaryBot Date: Wed, 9 Oct 2024 20:00:50 +0000 Subject: [PATCH 425/486] Update translation template --- po/com.github.stsdc.monitor.pot | 38 ++--- po/extra/extra.pot | 270 +++++++++++++++++++++++++++++++- 2 files changed, 277 insertions(+), 31 deletions(-) diff --git a/po/com.github.stsdc.monitor.pot b/po/com.github.stsdc.monitor.pot index 89d30ab7..0bf54358 100644 --- a/po/com.github.stsdc.monitor.pot +++ b/po/com.github.stsdc.monitor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,22 +17,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -61,7 +57,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -206,47 +202,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -320,7 +312,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 527a15c2..9977e432 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,22 +30,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" From a17bf412834c3e3fada0fc52b67f75faf2ae5e2c Mon Sep 17 00:00:00 2001 From: Uwe S Date: Wed, 9 Oct 2024 16:26:28 +0000 Subject: [PATCH 426/486] Translated using Weblate (German) Currently translated at 100.0% (105 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/de/ --- po/de.po | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/po/de.po b/po/de.po index 57e7f4b3..a87ce3c9 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" @@ -15,7 +15,7 @@ msgstr "" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" -msgstr "Überwachung" +msgstr "Systemaufsicht" #: src/MainWindow.vala:39 msgid "Processes" @@ -39,7 +39,7 @@ msgstr "Container" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 msgid "N/A" -msgstr "nicht vorhanden" +msgstr "­" #: src/Utils.vala:76 msgid "B" @@ -63,11 +63,11 @@ msgstr "GiB" #: src/Indicator/Widgets/PopoverWidget.vala:13 msgid "Show Monitor" -msgstr "Monitor anzeigen" +msgstr "Systemaufsicht anzeigen" #: src/Indicator/Widgets/PopoverWidget.vala:16 msgid "Quit Monitor" -msgstr "Monitor beenden" +msgstr "Systemaufsicht beenden" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" @@ -100,32 +100,38 @@ msgstr "THR" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" -msgstr "" +msgstr "Die Anwendung wartet in einem nicht unterbrechungsfähigen Ruhezustand" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" -msgstr "" +msgstr "Inaktiver Kernel-Thread" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" msgstr "" +"Der Prozess wird ausgeführt oder kann ausgeführt werden (in " +"Ausführungswarteschlange)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" +"Der Prozess befindet sichin einem unterbrechbaren Bereitschaftsmodus und " +"wartet auf ein Ereignis, um fortzufahren" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" -msgstr "" +msgstr "Der Prozess wurde vom einem Job-Control-Signal angehalten" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" -msgstr "" +msgstr "Der Prozess wurde während des Tracings durch einen Debugger angehalten" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" msgstr "" +"Die Anwendung wurde beendet, aber nicht durch ihren Elternprozess aus der " +"Prozesstabelle gelöscht" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 msgid "Opened files" @@ -217,7 +223,7 @@ msgstr "Feine Linien auf CPU-Diagramm darstellen (erneuter Start erforderlich):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 msgid "Update every (requires restart):" -msgstr "Aktualisieren alle (erneuter Start erforderlich):" +msgstr "Aktualisieren alle (erneuter Start erforderlich):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" From 35f8dadf75e3d2d4c56dcdb79b2b6d8222183f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=83=D0=B1=D0=B8=D0=BA=20=D0=BA=D1=80=D1=83=D0=B3?= =?UTF-8?q?=D0=BB=D1=8B=D0=B9?= Date: Wed, 9 Oct 2024 15:06:56 +0000 Subject: [PATCH 427/486] Translated using Weblate (Russian) Currently translated at 100.0% (105 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ru/ --- po/ru.po | 45 ++++++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/po/ru.po b/po/ru.po index fbc2f665..ad3e4a53 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,14 +3,17 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: 2024-09-07 14:43+0300\n" -"Last-Translator: Leo \n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: кубик круглый \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.3\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -112,7 +115,7 @@ msgstr "Процесс запущен или готов к выполнению #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" -msgstr "Процесс находится в прерывистом сне; ожидая завершения события" +msgstr "Процесс находится в прерывистом сне; ожидает завершения события" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" @@ -181,7 +184,7 @@ msgstr "Имя процесса" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 #: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" -msgstr "ЦПУ" +msgstr "ЦП" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 @@ -192,7 +195,7 @@ msgstr "Память" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" -msgstr "ЦПУ: %.1f%%" +msgstr "ЦП: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format @@ -220,23 +223,23 @@ msgstr "Обновлять каждые (требуется перезапуск #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "1s" -msgstr "1с" +msgstr "1 с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "2s" -msgstr "2с" +msgstr "2 с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "3s" -msgstr "3с" +msgstr "3 с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "4s" -msgstr "4с" +msgstr "4 с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 msgid "5s" -msgstr "5с" +msgstr "5 с" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 msgid "Show containers tab (requires restart):" @@ -244,7 +247,7 @@ msgstr "Показывать вкладку контейнеров (требуе #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" -msgstr "Показывать индикатор в панели" +msgstr "Показывать индикатор на панели" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 @@ -277,23 +280,23 @@ msgstr "Скорость загрузки сети" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "Использование ГПУ" +msgstr "Использование граф. процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "Использование VRAM памяти" +msgstr "Использование видеопамяти" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "Температура ГПУ" +msgstr "Температура граф. процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "Включён" +msgstr "Включены" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "Отключён" +msgstr "Отключены" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" @@ -393,7 +396,7 @@ msgstr "Использовано" #: src/Views/SystemView/SystemMemoryView.vala:10 msgid "Shared" -msgstr "Общий" +msgstr "Общая память" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" @@ -425,7 +428,7 @@ msgstr "Не подключено" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" -msgstr "ПАМЯТЬ" +msgstr "ВИДЕОПАМЯТЬ" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" @@ -449,7 +452,7 @@ msgstr "Подкачка" #: src/Widgets/Statusbar/Statusbar.vala:22 msgid "GPU" -msgstr "ГПУ" +msgstr "Графический процессор" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 From 478e2b841ed42a092313163aaf32c864366fc3f6 Mon Sep 17 00:00:00 2001 From: Uwe S Date: Wed, 9 Oct 2024 16:26:28 +0000 Subject: [PATCH 428/486] Translated using Weblate (German) Currently translated at 100.0% (8 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/de/ --- po/extra/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/extra/de.po b/po/extra/de.po index 52a7f97c..d736b448 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" @@ -22,7 +22,7 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "Überwachung" +msgstr "Systemaufsicht" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 244018c60aeabe7da734ed33361a1a4b34173d89 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:46:54 +0000 Subject: [PATCH 429/486] Translated using Weblate (Italian) Currently translated at 25.0% (2 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/it/ --- po/extra/it.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/extra/it.po b/po/extra/it.po index 08c56379..f9d234cc 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -8,18 +8,21 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 2a6a19d3238afaab7b2cbb7e8107bed6a0e6b4e9 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:46:58 +0000 Subject: [PATCH 430/486] Translated using Weblate (Turkish) Currently translated at 25.0% (2 of 8 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/tr/ --- po/extra/tr.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/extra/tr.po b/po/extra/tr.po index 20443936..049f8037 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -8,18 +8,21 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-20 22:25+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 9e47a7f7df2d686b1b8b283ecab640db5b977870 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:12 +0000 Subject: [PATCH 431/486] Translated using Weblate (Swedish) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/sv/ --- po/sv.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/sv.po b/po/sv.po index cf6e20dd..baf14724 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Inaktiverad" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From a288a04e9aafb5d2939af5756ec3216bd854d77c Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:13 +0000 Subject: [PATCH 432/486] Translated using Weblate (Esperanto) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/eo/ --- po/eo.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/eo.po b/po/eo.po index be13cc73..a4fca8ed 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistemo" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Malaktivigita" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From fc727b57afe28ef5fda34398839f5774c2473356 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:14 +0000 Subject: [PATCH 433/486] Translated using Weblate (Malayalam) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ml/ --- po/ml.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/ml.po b/po/ml.po index bba253fa..94a8d55d 100644 --- a/po/ml.po +++ b/po/ml.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Malayalam \n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "സിസ്റ്റം" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "പ്രവർത്തനരഹിതം" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From c52b1b6762b6173c175a8f01082baf7154946024 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:15 +0000 Subject: [PATCH 434/486] Translated using Weblate (Slovak) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/sk/ --- po/sk.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 835f205f..68eae146 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Systém" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Vypnuté" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 06cd7aa69a3a659c0027cfe6d986c4753f8ad011 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:16 +0000 Subject: [PATCH 435/486] Translated using Weblate (Catalan) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ca/ --- po/ca.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/ca.po b/po/ca.po index b8b5ec34..d4f919ff 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Inhabilitat" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 0cc0ff6de14e41b801ccc50f4eba4424a8324e56 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:16 +0000 Subject: [PATCH 436/486] Translated using Weblate (Finnish) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/fi/ --- po/fi.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/fi.po b/po/fi.po index 2fab36c5..8f5882a4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Järjestelmä" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Pois käytöstä" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 2a5745e675baa5b60d1b911e991499752e2e8a99 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:17 +0000 Subject: [PATCH 437/486] Translated using Weblate (Portuguese (Brazil)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/pt_BR/ --- po/pt_BR.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/pt_BR.po b/po/pt_BR.po index 6ff663dd..b8cd6290 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Desabilitado" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From ba5410adfce0eb495bffe1bf5dec4fb5a1850170 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:18 +0000 Subject: [PATCH 438/486] Translated using Weblate (Norwegian Nynorsk) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/nn/ --- po/nn.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/nn.po b/po/nn.po index 31fad1d5..d198418d 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Avslått" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 412129dd860bad188badec8a7ee4a84db073dc77 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:19 +0000 Subject: [PATCH 439/486] Translated using Weblate (English (United Kingdom)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/en_GB/ --- po/en_GB.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 27245881..2458ed45 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: English (United Kingdom) \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Disabled" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 1814896128c047ea303ad48e0ada43f4f5b03e69 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:19 +0000 Subject: [PATCH 440/486] Translated using Weblate (Serbian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/sr/ --- po/sr.po | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/po/sr.po b/po/sr.po index 1349ba47..1ca7233c 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,13 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +30,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Систем" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +301,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Искључено" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From d94b29b68dabf6ca90dcefe8d9a4936961e040cf Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:20 +0000 Subject: [PATCH 441/486] Translated using Weblate (Slovenian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/sl/ --- po/sl.po | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8ef38f38..7a8b9c44 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,13 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +30,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistem" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +301,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Onemogočeno" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From a1fb5fc16e94371d596157b485658ce9fa418af0 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:21 +0000 Subject: [PATCH 442/486] Translated using Weblate (Marathi) Currently translated at 0.9% (1 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/mr/ --- po/mr.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/mr.po b/po/mr.po index 291747af..0d59b90d 100644 --- a/po/mr.po +++ b/po/mr.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Marathi \n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -437,7 +440,7 @@ msgstr "" #: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" -msgstr "" +msgstr "सेटिंग्ज" #: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" From 12d25b9f9768e91c7b6c758a8c88de1a750c7544 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:22 +0000 Subject: [PATCH 443/486] Translated using Weblate (Arabic) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ar/ --- po/ar.po | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/po/ar.po b/po/ar.po index e112e320..71151c85 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,13 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +30,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "النظام" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +301,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "معطل" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 313e4fd76b7d302bf1b985080471b90dbc83a47a Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:23 +0000 Subject: [PATCH 444/486] Translated using Weblate (Danish) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/da/ --- po/da.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/da.po b/po/da.po index 4356c825..b750fc92 100644 --- a/po/da.po +++ b/po/da.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Deaktiveret" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 04c96dfd5863bd80f2d7ab41aeb420f364050b2c Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:24 +0000 Subject: [PATCH 445/486] Translated using Weblate (Silesian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/szl/ --- po/szl.po | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/po/szl.po b/po/szl.po index 98217965..35ad1171 100644 --- a/po/szl.po +++ b/po/szl.po @@ -8,13 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Silesian \n" "Language: szl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +30,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Systym" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +301,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Zastawiōny" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 9928c7210aad4935ce0859f711fa7381b67b2fef Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 14:52:25 +0000 Subject: [PATCH 446/486] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l=20(nb))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/nb/ --- po/nb.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/nb.po b/po/nb.po index 1a5585e4..10b122b4 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Avskrudd" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 19db4857f6dcee3a20b0d678b3ea0be227a4ca0c Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:25 +0000 Subject: [PATCH 447/486] Translated using Weblate (Georgian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ka/ --- po/ka.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/ka.po b/po/ka.po index e7530701..c093cbde 100644 --- a/po/ka.po +++ b/po/ka.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Georgian \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "სისტემა" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "გამორთულია" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 84360ba558318f71e1370ac91b9ca953046196c6 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:25 +0000 Subject: [PATCH 448/486] Translated using Weblate (Czech) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/cs/ --- po/cs.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/cs.po b/po/cs.po index c36bdb25..60e8eb3c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Systém" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Vypnuto" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From bf665a9e8d1ef0cd4e4102a35f363baef341dec0 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:26 +0000 Subject: [PATCH 449/486] Translated using Weblate (Indonesian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/id/ --- po/id.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/id.po b/po/id.po index d3f135ad..e20cba4b 100644 --- a/po/id.po +++ b/po/id.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistem" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Dinonaktifkan" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 6b8e4c0f37e0152738c8125c64b7a1f4d4223d2a Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:27 +0000 Subject: [PATCH 450/486] Translated using Weblate (Kurdish) Currently translated at 0.9% (1 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ku/ --- po/ku.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/ku.po b/po/ku.po index f28c578d..14ded1d1 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Kurdish \n" "Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Kêmendam" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 806d1a155673b7eb24123e4f6691199aba7b637c Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:27 +0000 Subject: [PATCH 451/486] Translated using Weblate (Hungarian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/hu/ --- po/hu.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/hu.po b/po/hu.po index 0a18b331..de048979 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Rendszer" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Letiltva" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 188bdbf28a361bca68c0a11328ca0ef2ed372708 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:28 +0000 Subject: [PATCH 452/486] Translated using Weblate (Korean) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ko/ --- po/ko.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/ko.po b/po/ko.po index 0b7ece44..fc79bf07 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "시스템" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "사용 안 함" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From bcc5d15564533901ad7d1a762dd01e7135b3df5a Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:29 +0000 Subject: [PATCH 453/486] Translated using Weblate (Occitan) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/oc/ --- po/oc.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/oc.po b/po/oc.po index b001745c..cdd1f9a2 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistèma" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Desactivat" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 8b92279af9decc29c5041d8d3216df0cdfb9d7ed Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:29 +0000 Subject: [PATCH 454/486] Translated using Weblate (Bosnian) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/bs/ --- po/bs.po | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/po/bs.po b/po/bs.po index bdd576db..b64a86cd 100644 --- a/po/bs.po +++ b/po/bs.po @@ -8,13 +8,17 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +30,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistem" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +301,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Deaktivirano" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 0c259e133ac41ddf30d49921661b47d30dfb7537 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:29 +0000 Subject: [PATCH 455/486] Translated using Weblate (Galician) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/gl/ --- po/gl.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/gl.po b/po/gl.po index a07f72df..8b9cc5b1 100644 --- a/po/gl.po +++ b/po/gl.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistema" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Desactivado" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 8951ea09ff15f14204b74173d040430970b29423 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:30 +0000 Subject: [PATCH 456/486] Translated using Weblate (English (Canada)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/en_CA/ --- po/en_CA.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/en_CA.po b/po/en_CA.po index bc004993..bfbc92a5 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: English (Canada) \n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Disabled" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 4dd1cc2ef81ec450ddc748a026a95d79e8daf566 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:31 +0000 Subject: [PATCH 457/486] Translated using Weblate (English (Australia)) Currently translated at 0.9% (1 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/en_AU/ --- po/en_AU.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/en_AU.po b/po/en_AU.po index 4ad185a1..be79fc7b 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: English (Australia) \n" "Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "System" #: src/MainWindow.vala:43 msgid "Containers" From be649de1004be187b103402f1725da7e8734f666 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:31 +0000 Subject: [PATCH 458/486] Translated using Weblate (Kurdish (Central)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ckb/ --- po/ckb.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/ckb.po b/po/ckb.po index 38d52fde..ce0a3f7a 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Kurdish (Central) \n" "Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "سیستەم" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "ڕاگیراو" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 339fcdc736685e1f21ff557bf4fe54082b299265 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:31 +0000 Subject: [PATCH 459/486] Translated using Weblate (Chinese (zh)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/zh/ --- po/zh.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/zh.po b/po/zh.po index a6967e59..3ffe0ce9 100644 --- a/po/zh.po +++ b/po/zh.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Chinese \n" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "系统" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "已禁用" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From e1d43b5d5c5270c0fc5c0c5159fd3cb92c10cb8d Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:32 +0000 Subject: [PATCH 460/486] Translated using Weblate (Chinese (Traditional)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/zh_Hant/ --- po/zh_Hant.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/zh_Hant.po b/po/zh_Hant.po index 11eb6adc..7c88218c 100644 --- a/po/zh_Hant.po +++ b/po/zh_Hant.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh_Hant\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "系統" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "已停用" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 4a2d8206378515d982541f5399fe4688d9f90c37 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:32 +0000 Subject: [PATCH 461/486] Translated using Weblate (Chinese (Simplified)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/zh_Hans/ --- po/zh_Hans.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 490950b4..0f535c4f 100644 --- a/po/zh_Hans.po +++ b/po/zh_Hans.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "系统" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "已禁用" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From c0b9174cc2938ccb955ebb2e0d8e5e534966af94 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 9 Oct 2024 15:02:33 +0000 Subject: [PATCH 462/486] Translated using Weblate (Moldovan (mo)) Currently translated at 1.9% (2 of 105 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/mo/ --- po/mo.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/po/mo.po b/po/mo.po index bf036eed..40ac38d0 100644 --- a/po/mo.po +++ b/po/mo.po @@ -8,13 +8,16 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-07 10:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"Last-Translator: anonymous \n" +"Language-Team: Moldovan \n" "Language: mo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" @@ -26,7 +29,7 @@ msgstr "" #: src/MainWindow.vala:40 msgid "System" -msgstr "" +msgstr "Sistem" #: src/MainWindow.vala:43 msgid "Containers" @@ -297,7 +300,7 @@ msgstr "" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "Dezabilitat" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 58cfc1f6903dcd00014dc80313acbf355b068eda Mon Sep 17 00:00:00 2001 From: Weblate Date: Wed, 9 Oct 2024 20:01:04 +0000 Subject: [PATCH 463/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ --- po/aa.po | 38 +++++++++++++++----------------------- po/ab.po | 38 +++++++++++++++----------------------- po/ace.po | 38 +++++++++++++++----------------------- po/ae.po | 38 +++++++++++++++----------------------- po/af.po | 38 +++++++++++++++----------------------- po/ak.po | 38 +++++++++++++++----------------------- po/am.po | 38 +++++++++++++++----------------------- po/an.po | 38 +++++++++++++++----------------------- po/ar.po | 38 +++++++++++++++----------------------- po/as.po | 38 +++++++++++++++----------------------- po/ast.po | 38 +++++++++++++++----------------------- po/av.po | 38 +++++++++++++++----------------------- po/ay.po | 38 +++++++++++++++----------------------- po/az.po | 38 +++++++++++++++----------------------- po/ba.po | 38 +++++++++++++++----------------------- po/be.po | 38 +++++++++++++++----------------------- po/bg.po | 38 +++++++++++++++----------------------- po/bh.po | 38 +++++++++++++++----------------------- po/bi.po | 38 +++++++++++++++----------------------- po/bm.po | 38 +++++++++++++++----------------------- po/bn.po | 38 +++++++++++++++----------------------- po/bo.po | 38 +++++++++++++++----------------------- po/br.po | 38 +++++++++++++++----------------------- po/bs.po | 38 +++++++++++++++----------------------- po/ca.po | 38 +++++++++++++++----------------------- po/ca@valencia.po | 38 +++++++++++++++----------------------- po/ce.po | 38 +++++++++++++++----------------------- po/ch.po | 38 +++++++++++++++----------------------- po/ckb.po | 38 +++++++++++++++----------------------- po/co.po | 38 +++++++++++++++----------------------- po/cr.po | 38 +++++++++++++++----------------------- po/cs.po | 38 +++++++++++++++----------------------- po/cu.po | 38 +++++++++++++++----------------------- po/cv.po | 38 +++++++++++++++----------------------- po/cy.po | 38 +++++++++++++++----------------------- po/da.po | 38 +++++++++++++++----------------------- po/de.po | 47 +++++++++++++++++++++++------------------------ po/dv.po | 38 +++++++++++++++----------------------- po/dz.po | 38 +++++++++++++++----------------------- po/ee.po | 38 +++++++++++++++----------------------- po/el.po | 38 +++++++++++++++----------------------- po/en_AU.po | 38 +++++++++++++++----------------------- po/en_CA.po | 38 +++++++++++++++----------------------- po/en_GB.po | 38 +++++++++++++++----------------------- po/en_ZA.po | 38 +++++++++++++++----------------------- po/eo.po | 38 +++++++++++++++----------------------- po/es.po | 47 +++++++++++++++++++++++------------------------ po/et.po | 38 +++++++++++++++----------------------- po/eu.po | 38 +++++++++++++++----------------------- po/fa.po | 38 +++++++++++++++----------------------- po/ff.po | 38 +++++++++++++++----------------------- po/fi.po | 38 +++++++++++++++----------------------- po/fil.po | 38 +++++++++++++++----------------------- po/fj.po | 38 +++++++++++++++----------------------- po/fo.po | 38 +++++++++++++++----------------------- po/fr.po | 46 ++++++++++++++++++++++------------------------ po/fr_CA.po | 38 +++++++++++++++----------------------- po/frp.po | 38 +++++++++++++++----------------------- po/fy.po | 38 +++++++++++++++----------------------- po/ga.po | 38 +++++++++++++++----------------------- po/gd.po | 38 +++++++++++++++----------------------- po/gl.po | 38 +++++++++++++++----------------------- po/gn.po | 38 +++++++++++++++----------------------- po/gu.po | 38 +++++++++++++++----------------------- po/gv.po | 38 +++++++++++++++----------------------- po/ha.po | 38 +++++++++++++++----------------------- po/he.po | 38 +++++++++++++++----------------------- po/hi.po | 38 +++++++++++++++----------------------- po/ho.po | 38 +++++++++++++++----------------------- po/hr.po | 38 +++++++++++++++----------------------- po/ht.po | 38 +++++++++++++++----------------------- po/hu.po | 38 +++++++++++++++----------------------- po/hy.po | 38 +++++++++++++++----------------------- po/hz.po | 38 +++++++++++++++----------------------- po/ia.po | 38 +++++++++++++++----------------------- po/id.po | 38 +++++++++++++++----------------------- po/id_ID.po | 38 +++++++++++++++----------------------- po/ie.po | 38 +++++++++++++++----------------------- po/ig.po | 38 +++++++++++++++----------------------- po/ii.po | 38 +++++++++++++++----------------------- po/ik.po | 38 +++++++++++++++----------------------- po/io.po | 38 +++++++++++++++----------------------- po/is.po | 38 +++++++++++++++----------------------- po/it.po | 38 +++++++++++++++----------------------- po/iu.po | 38 +++++++++++++++----------------------- po/ja.po | 44 +++++++++++++++++++++----------------------- po/jv.po | 38 +++++++++++++++----------------------- po/ka.po | 38 +++++++++++++++----------------------- po/kg.po | 38 +++++++++++++++----------------------- po/ki.po | 38 +++++++++++++++----------------------- po/kj.po | 38 +++++++++++++++----------------------- po/kk.po | 38 +++++++++++++++----------------------- po/kl.po | 38 +++++++++++++++----------------------- po/km.po | 38 +++++++++++++++----------------------- po/kn.po | 38 +++++++++++++++----------------------- po/ko.po | 38 +++++++++++++++----------------------- po/kr.po | 38 +++++++++++++++----------------------- po/ks.po | 38 +++++++++++++++----------------------- po/ku.po | 38 +++++++++++++++----------------------- po/kv.po | 38 +++++++++++++++----------------------- po/kw.po | 38 +++++++++++++++----------------------- po/ky.po | 38 +++++++++++++++----------------------- po/la.po | 38 +++++++++++++++----------------------- po/lb.po | 38 +++++++++++++++----------------------- po/lg.po | 38 +++++++++++++++----------------------- po/li.po | 38 +++++++++++++++----------------------- po/ln.po | 38 +++++++++++++++----------------------- po/lo.po | 38 +++++++++++++++----------------------- po/lt.po | 38 +++++++++++++++----------------------- po/lu.po | 38 +++++++++++++++----------------------- po/lv.po | 38 +++++++++++++++----------------------- po/mg.po | 38 +++++++++++++++----------------------- po/mh.po | 38 +++++++++++++++----------------------- po/mi.po | 38 +++++++++++++++----------------------- po/mk.po | 38 +++++++++++++++----------------------- po/ml.po | 38 +++++++++++++++----------------------- po/mn.po | 38 +++++++++++++++----------------------- po/mo.po | 38 +++++++++++++++----------------------- po/mr.po | 38 +++++++++++++++----------------------- po/ms.po | 38 +++++++++++++++----------------------- po/mt.po | 38 +++++++++++++++----------------------- po/my.po | 38 +++++++++++++++----------------------- po/na.po | 38 +++++++++++++++----------------------- po/nb.po | 38 +++++++++++++++----------------------- po/nd.po | 38 +++++++++++++++----------------------- po/ne.po | 38 +++++++++++++++----------------------- po/ng.po | 38 +++++++++++++++----------------------- po/nl.po | 38 +++++++++++++++----------------------- po/nn.po | 38 +++++++++++++++----------------------- po/no.po | 38 +++++++++++++++----------------------- po/nr.po | 38 +++++++++++++++----------------------- po/nv.po | 38 +++++++++++++++----------------------- po/ny.po | 38 +++++++++++++++----------------------- po/oc.po | 38 +++++++++++++++----------------------- po/oj.po | 38 +++++++++++++++----------------------- po/om.po | 38 +++++++++++++++----------------------- po/or.po | 38 +++++++++++++++----------------------- po/os.po | 38 +++++++++++++++----------------------- po/pa.po | 38 +++++++++++++++----------------------- po/pap.po | 38 +++++++++++++++----------------------- po/pi.po | 38 +++++++++++++++----------------------- po/pl.po | 38 +++++++++++++++----------------------- po/ps.po | 38 +++++++++++++++----------------------- po/pt.po | 44 +++++++++++++++++++++----------------------- po/pt_BR.po | 38 +++++++++++++++----------------------- po/qu.po | 38 +++++++++++++++----------------------- po/rm.po | 38 +++++++++++++++----------------------- po/rn.po | 38 +++++++++++++++----------------------- po/ro.po | 38 +++++++++++++++----------------------- po/ru.po | 44 +++++++++++++++++++++----------------------- po/rue.po | 38 +++++++++++++++----------------------- po/rw.po | 38 +++++++++++++++----------------------- po/sa.po | 38 +++++++++++++++----------------------- po/sc.po | 38 +++++++++++++++----------------------- po/sd.po | 38 +++++++++++++++----------------------- po/se.po | 38 +++++++++++++++----------------------- po/sg.po | 38 +++++++++++++++----------------------- po/si.po | 38 +++++++++++++++----------------------- po/sk.po | 38 +++++++++++++++----------------------- po/sl.po | 38 +++++++++++++++----------------------- po/sm.po | 38 +++++++++++++++----------------------- po/sma.po | 38 +++++++++++++++----------------------- po/sn.po | 38 +++++++++++++++----------------------- po/so.po | 38 +++++++++++++++----------------------- po/sq.po | 38 +++++++++++++++----------------------- po/sr.po | 38 +++++++++++++++----------------------- po/sr@latin.po | 38 +++++++++++++++----------------------- po/ss.po | 38 +++++++++++++++----------------------- po/st.po | 38 +++++++++++++++----------------------- po/su.po | 38 +++++++++++++++----------------------- po/sv.po | 38 +++++++++++++++----------------------- po/sw.po | 38 +++++++++++++++----------------------- po/szl.po | 38 +++++++++++++++----------------------- po/ta.po | 38 +++++++++++++++----------------------- po/te.po | 38 +++++++++++++++----------------------- po/tg.po | 38 +++++++++++++++----------------------- po/th.po | 38 +++++++++++++++----------------------- po/ti.po | 38 +++++++++++++++----------------------- po/tk.po | 38 +++++++++++++++----------------------- po/tl.po | 38 +++++++++++++++----------------------- po/tn.po | 38 +++++++++++++++----------------------- po/to.po | 38 +++++++++++++++----------------------- po/tr.po | 38 +++++++++++++++----------------------- po/ts.po | 38 +++++++++++++++----------------------- po/tt.po | 38 +++++++++++++++----------------------- po/tw.po | 38 +++++++++++++++----------------------- po/ty.po | 38 +++++++++++++++----------------------- po/ug.po | 38 +++++++++++++++----------------------- po/uk.po | 44 +++++++++++++++++++++----------------------- po/ur.po | 38 +++++++++++++++----------------------- po/uz.po | 38 +++++++++++++++----------------------- po/ve.po | 38 +++++++++++++++----------------------- po/vi.po | 38 +++++++++++++++----------------------- po/vo.po | 38 +++++++++++++++----------------------- po/wa.po | 38 +++++++++++++++----------------------- po/wo.po | 38 +++++++++++++++----------------------- po/xh.po | 38 +++++++++++++++----------------------- po/yi.po | 38 +++++++++++++++----------------------- po/yo.po | 38 +++++++++++++++----------------------- po/za.po | 38 +++++++++++++++----------------------- po/zh.po | 38 +++++++++++++++----------------------- po/zh_HK.po | 38 +++++++++++++++----------------------- po/zh_Hans.po | 38 +++++++++++++++----------------------- po/zh_Hant.po | 38 +++++++++++++++----------------------- po/zu.po | 38 +++++++++++++++----------------------- 205 files changed, 3122 insertions(+), 4718 deletions(-) diff --git a/po/aa.po b/po/aa.po index af9c3cc5..660531f6 100644 --- a/po/aa.po +++ b/po/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ab.po b/po/ab.po index b8c30509..89fd0d9a 100644 --- a/po/ab.po +++ b/po/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ace.po b/po/ace.po index be6f40ef..e7763250 100644 --- a/po/ace.po +++ b/po/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ae.po b/po/ae.po index c1986c47..94ef92fa 100644 --- a/po/ae.po +++ b/po/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/af.po b/po/af.po index 0742244f..bf91a105 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ak.po b/po/ak.po index 12d56e67..6b0303a4 100644 --- a/po/ak.po +++ b/po/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/am.po b/po/am.po index cf9ca168..2d0f85cb 100644 --- a/po/am.po +++ b/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/an.po b/po/an.po index 89d0d563..9ca51efd 100644 --- a/po/an.po +++ b/po/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ar.po b/po/ar.po index 71151c85..42b9ffe5 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Arabic =11 ? 4 : 5;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "النظام" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -209,47 +205,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -323,7 +315,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/as.po b/po/as.po index 30753e8b..4469f882 100644 --- a/po/as.po +++ b/po/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ast.po b/po/ast.po index 30e4699c..32c6111d 100644 --- a/po/ast.po +++ b/po/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/av.po b/po/av.po index 50f60420..44b66cef 100644 --- a/po/av.po +++ b/po/av.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ay.po b/po/ay.po index d3695fb5..6b988522 100644 --- a/po/ay.po +++ b/po/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/az.po b/po/az.po index fd632d5b..2caa1eaa 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ba.po b/po/ba.po index e4ad26e4..fffc53f9 100644 --- a/po/ba.po +++ b/po/ba.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/be.po b/po/be.po index 34255397..6bd7126b 100644 --- a/po/be.po +++ b/po/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bg.po b/po/bg.po index 47019eb4..90c5bc27 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bh.po b/po/bh.po index 97b78fe4..2980b7dc 100644 --- a/po/bh.po +++ b/po/bh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bi.po b/po/bi.po index 4bcb94fe..d65e407b 100644 --- a/po/bi.po +++ b/po/bi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bm.po b/po/bm.po index 0d8ca009..733ab600 100644 --- a/po/bm.po +++ b/po/bm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bn.po b/po/bn.po index 3336a206..de349e10 100644 --- a/po/bn.po +++ b/po/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bo.po b/po/bo.po index 7027bb1a..9fae5fdd 100644 --- a/po/bo.po +++ b/po/bo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/br.po b/po/br.po index f7fcb2d5..d05730c2 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/bs.po b/po/bs.po index b64a86cd..a6d1fc3d 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Bosnian =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Sistem" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -209,47 +205,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -323,7 +315,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ca.po b/po/ca.po index d4f919ff..42abc316 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Catalan \n" "Language-Team: Kurdish (Central) \n" "Language-Team: Czech =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Systém" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -208,47 +204,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -322,7 +314,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/cu.po b/po/cu.po index 68868254..d70db2b6 100644 --- a/po/cu.po +++ b/po/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/cv.po b/po/cv.po index e232059e..585c1e6f 100644 --- a/po/cv.po +++ b/po/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/cy.po b/po/cy.po index 551b27a0..9b3e9e9c 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/da.po b/po/da.po index b750fc92..3b94d2a2 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: English (Australia) \n" "Language-Team: English (Canada) \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Finnish \n" "Language-Team: Galician \n" "Language-Team: Hungarian \n" "Language-Team: Indonesian \n" "Language-Team: Italian \n" "Language-Team: none\n" @@ -17,22 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "モニター" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "プロセス" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "システム" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "コンテナ" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -61,7 +57,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "GiB" @@ -206,47 +202,43 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "一般" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "バックグラウンドで起動:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "更新間隔 (再起動が必要):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "1 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "2 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "3 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "4 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "5 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "コンテナタブを表示 (再起動が必要):" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Wingpanel にインジケーターを表示" @@ -320,7 +312,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "GHz" @@ -474,3 +466,9 @@ msgstr "GitHub で確認" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "使用率" + +#~ msgid "Containers" +#~ msgstr "コンテナ" + +#~ msgid "Show containers tab (requires restart):" +#~ msgstr "コンテナタブを表示 (再起動が必要):" diff --git a/po/jv.po b/po/jv.po index 9aff5737..71a7268c 100644 --- a/po/jv.po +++ b/po/jv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ka.po b/po/ka.po index c093cbde..9f4dc3b8 100644 --- a/po/ka.po +++ b/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" "Language-Team: Kurdish =2 && " "(n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 #, fuzzy msgid "Processes" msgstr "Proceso pavadinimas" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "GiB" @@ -215,47 +211,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy msgid "Show indicator in Wingpanel" @@ -330,7 +322,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/lu.po b/po/lu.po index 9eb2ed11..0c665c72 100644 --- a/po/lu.po +++ b/po/lu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/lv.po b/po/lv.po index c8de37fd..3ac9a696 100644 --- a/po/lv.po +++ b/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/mg.po b/po/mg.po index 027c025f..88c6b2f5 100644 --- a/po/mg.po +++ b/po/mg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/mh.po b/po/mh.po index ac4f8dfb..a017d9a6 100644 --- a/po/mh.po +++ b/po/mh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/mi.po b/po/mi.po index 1bdd2b8d..8938d386 100644 --- a/po/mi.po +++ b/po/mi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/mk.po b/po/mk.po index 17a21e4c..92b98f88 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ml.po b/po/ml.po index 94a8d55d..bb5bf020 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Malayalam \n" "Language-Team: Moldovan \n" "Language-Team: Marathi \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: \n" @@ -12,22 +12,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "Processen" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Systeem" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -56,7 +52,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "GiB" @@ -205,47 +201,43 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Algemeen" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Geminimaliseerd opstarten:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy msgid "Show indicator in Wingpanel" @@ -327,7 +319,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "GHz" diff --git a/po/nn.po b/po/nn.po index d198418d..fa1b9528 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Occitan 1;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Sistèma" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -208,47 +204,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -322,7 +314,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/oj.po b/po/oj.po index 47f96cd9..efd639a6 100644 --- a/po/oj.po +++ b/po/oj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/om.po b/po/om.po index f09b2c6f..8b08731f 100644 --- a/po/om.po +++ b/po/om.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/or.po b/po/or.po index 31ae6f80..c5f1b0cb 100644 --- a/po/or.po +++ b/po/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/os.po b/po/os.po index 364d9e2b..a57363c7 100644 --- a/po/os.po +++ b/po/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/pa.po b/po/pa.po index bf760d61..d67ba24e 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/pap.po b/po/pap.po index 2e08fc41..39ba9a0a 100644 --- a/po/pap.po +++ b/po/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/pi.po b/po/pi.po index ccc628a8..0c3468ef 100644 --- a/po/pi.po +++ b/po/pi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/pl.po b/po/pl.po index de31b659..972ca1c2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" "Language-Team: Polish =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 #, fuzzy msgid "Processes" msgstr "Nazwa procesu" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "System" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "GiB" @@ -205,47 +201,43 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Uruchamiaj w tle" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy msgid "Show indicator in Wingpanel" @@ -320,7 +312,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "GHz" diff --git a/po/ps.po b/po/ps.po index 64a06781..1ec4e435 100644 --- a/po/ps.po +++ b/po/ps.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/pt.po b/po/pt.po index 120a8b20..27e1ce3d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) 1;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Sistema" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -208,47 +204,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -322,7 +314,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/qu.po b/po/qu.po index e2345727..2555dc8c 100644 --- a/po/qu.po +++ b/po/qu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/rm.po b/po/rm.po index 2b11ab9e..b05adcda 100644 --- a/po/rm.po +++ b/po/rm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/rn.po b/po/rn.po index 530a6708..1473c619 100644 --- a/po/rn.po +++ b/po/rn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ro.po b/po/ro.po index 2feee89b..250a7178 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2020-12-16 10:30+0200\n" "Last-Translator: Tiberiu Frățilă\n" "Language-Team: \n" @@ -19,22 +19,18 @@ msgstr "" "2:1));\n" "X-Generator: Poedit 2.0.6\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "Procese" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Sistem" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "Mio" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "Gio" @@ -208,47 +204,43 @@ msgstr "Memorie: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Pornește în fundal:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy msgid "Show indicator in Wingpanel" @@ -324,7 +316,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "GHz" diff --git a/po/ru.po b/po/ru.po index ad3e4a53..c3eb5295 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: кубик круглый \n" "Language-Team: Russian =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Монитор" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "Процессы" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Система" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "Контейнеры" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -59,7 +55,7 @@ msgstr "МиБ" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "ГиБ" @@ -204,47 +200,43 @@ msgstr "Память: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Общие" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Запускать в фоновом режиме:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Плавные линии для графика ЦП (требуется перезапуск):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "Обновлять каждые (требуется перезапуск):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "1 с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "2 с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "3 с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "4 с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "5 с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "Показывать вкладку контейнеров (требуется перезапуск):" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Показывать индикатор на панели" @@ -318,7 +310,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "ГГц" @@ -472,3 +464,9 @@ msgstr "Проект на Github" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" msgstr "ИСПОЛЬЗОВАНИЕ" + +#~ msgid "Containers" +#~ msgstr "Контейнеры" + +#~ msgid "Show containers tab (requires restart):" +#~ msgstr "Показывать вкладку контейнеров (требуется перезапуск):" diff --git a/po/rue.po b/po/rue.po index 9d811f30..d9a65a6a 100644 --- a/po/rue.po +++ b/po/rue.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/rw.po b/po/rw.po index 56f92025..301d448b 100644 --- a/po/rw.po +++ b/po/rw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sa.po b/po/sa.po index d4d7836d..373d9cc0 100644 --- a/po/sa.po +++ b/po/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sc.po b/po/sc.po index 8e5dec7b..50639c50 100644 --- a/po/sc.po +++ b/po/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sd.po b/po/sd.po index 81754d46..6d0c6ffd 100644 --- a/po/sd.po +++ b/po/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/se.po b/po/se.po index dc0fab2f..5345495c 100644 --- a/po/se.po +++ b/po/se.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sg.po b/po/sg.po index 8f2ec240..f209732d 100644 --- a/po/sg.po +++ b/po/sg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/si.po b/po/si.po index 21b53629..c90f4862 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sk.po b/po/sk.po index 68eae146..f62e5fb1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Slovak =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Systém" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -208,47 +204,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -322,7 +314,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sl.po b/po/sl.po index 7a8b9c44..2fc6e59a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Slovenian \n" "Language-Team: Serbian =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Систем" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -209,47 +205,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -323,7 +315,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sr@latin.po b/po/sr@latin.po index 916a233a..79b16acb 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ss.po b/po/ss.po index 2d87f4a7..48932054 100644 --- a/po/ss.po +++ b/po/ss.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/st.po b/po/st.po index b664054b..fe2c69ba 100644 --- a/po/st.po +++ b/po/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/su.po b/po/su.po index 560c6627..76398599 100644 --- a/po/su.po +++ b/po/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/sv.po b/po/sv.po index baf14724..aa9acb25 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Swedish \n" "Language-Team: Silesian =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Systym" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -209,47 +205,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -323,7 +315,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ta.po b/po/ta.po index b962511c..8db626b8 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/te.po b/po/te.po index 03089f34..596ae83f 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tg.po b/po/tg.po index 3824c7ae..644eff00 100644 --- a/po/tg.po +++ b/po/tg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/th.po b/po/th.po index 2ab3d2fc..91fe2b08 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ti.po b/po/ti.po index 0b6d84d4..fee5f9e0 100644 --- a/po/ti.po +++ b/po/ti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tk.po b/po/tk.po index 54e6666c..83d5953d 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tl.po b/po/tl.po index 308b085e..9cb161b7 100644 --- a/po/tl.po +++ b/po/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tn.po b/po/tn.po index 05ecc563..8ba5d684 100644 --- a/po/tn.po +++ b/po/tn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/to.po b/po/to.po index 08705997..837dce29 100644 --- a/po/to.po +++ b/po/to.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tr.po b/po/tr.po index 7df15e97..26c0e5dd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2020-04-15 21:51+0100\n" "Last-Translator: Harun Yasar \n" "Language-Team: none\n" @@ -17,24 +17,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Monitor" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 #, fuzzy msgid "Processes" msgstr "Süreç Adı" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 #, fuzzy msgid "System" msgstr "Sistem çağrıları" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -63,7 +59,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "GiB" @@ -208,47 +204,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Arka planda başlat:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 #, fuzzy msgid "Show indicator in Wingpanel" @@ -323,7 +315,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "GHz" diff --git a/po/ts.po b/po/ts.po index 05ec416c..e43e7a1d 100644 --- a/po/ts.po +++ b/po/ts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tt.po b/po/tt.po index ea4de27c..107611fe 100644 --- a/po/tt.po +++ b/po/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/tw.po b/po/tw.po index edb49d6f..ee8ab1a0 100644 --- a/po/tw.po +++ b/po/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ty.po b/po/ty.po index 010d7adb..66ebe98f 100644 --- a/po/ty.po +++ b/po/ty.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ug.po b/po/ug.po index 38c93078..fc273528 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/uk.po b/po/uk.po index 8d013ed3..5c172a57 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian =20) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "Монітор" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "Процеси" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "Система" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "Контейнери" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -64,7 +60,7 @@ msgstr "МіБ" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "ГіБ" @@ -209,47 +205,43 @@ msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Загальнi" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "Запустити у фоні:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "Малювати плавні лінії на діаграмі ЦП (потрібнe перезавантаження):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "Частота оновлення (потрібен перезапуск):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "1с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "2с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "3с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "4с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "5с" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "Показувати вкладку контейнерів (потрібен перезапуск):" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "Показати індикатор на Wingpanel" @@ -323,7 +315,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "ГГц" @@ -478,6 +470,12 @@ msgstr "Погляньте на Github" msgid "UTILIZATION" msgstr "ВИКОРИСТАННЯ" +#~ msgid "Containers" +#~ msgstr "Контейнери" + +#~ msgid "Show containers tab (requires restart):" +#~ msgstr "Показувати вкладку контейнерів (потрібен перезапуск):" + #~ msgid "Utilization" #~ msgstr "Утилізація" diff --git a/po/ur.po b/po/ur.po index 5e55feb1..e5d738b3 100644 --- a/po/ur.po +++ b/po/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/uz.po b/po/uz.po index 24e8b1bf..3d2e756f 100644 --- a/po/uz.po +++ b/po/uz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/ve.po b/po/ve.po index 8d0157de..beb2b6c6 100644 --- a/po/ve.po +++ b/po/ve.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/vi.po b/po/vi.po index ea9a7e43..4678c0a3 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/vo.po b/po/vo.po index 87ace610..c7130203 100644 --- a/po/vo.po +++ b/po/vo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/wa.po b/po/wa.po index d2cfd16d..8b1dd302 100644 --- a/po/wa.po +++ b/po/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/wo.po b/po/wo.po index 8a307730..1c27eb70 100644 --- a/po/wo.po +++ b/po/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/xh.po b/po/xh.po index caffe210..b9840088 100644 --- a/po/xh.po +++ b/po/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/yi.po b/po/yi.po index 56db6c8a..ea672985 100644 --- a/po/yi.po +++ b/po/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/yo.po b/po/yo.po index ab9e4525..8614f622 100644 --- a/po/yo.po +++ b/po/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/za.po b/po/za.po index bcd97d73..a1edc59d 100644 --- a/po/za.po +++ b/po/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,22 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:27 src/Widgets/Headerbar/Headerbar.vala:14 +#: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" msgstr "" -#: src/MainWindow.vala:39 +#: src/MainWindow.vala:37 msgid "Processes" msgstr "" -#: src/MainWindow.vala:40 +#: src/MainWindow.vala:38 msgid "System" msgstr "" -#: src/MainWindow.vala:43 -msgid "Containers" -msgstr "" - #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:38 @@ -60,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:98 +#: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" msgstr "" @@ -205,47 +201,43 @@ msgstr "" #. status: "Spinning", #. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:22 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:44 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:58 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:60 -msgid "Show containers tab (requires restart):" -msgstr "" - #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" msgstr "" @@ -319,7 +311,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:84 +#: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" msgstr "" diff --git a/po/zh.po b/po/zh.po index 3ffe0ce9..dc510e9f 100644 --- a/po/zh.po +++ b/po/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-07 10:42+0200\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Chinese \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Traditional) Date: Wed, 9 Oct 2024 20:02:58 +0000 Subject: [PATCH 464/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ --- po/extra/aa.po | 270 +++++++++++++++++++++++++++- po/extra/ab.po | 270 +++++++++++++++++++++++++++- po/extra/ace.po | 270 +++++++++++++++++++++++++++- po/extra/ae.po | 270 +++++++++++++++++++++++++++- po/extra/af.po | 270 +++++++++++++++++++++++++++- po/extra/ak.po | 270 +++++++++++++++++++++++++++- po/extra/am.po | 270 +++++++++++++++++++++++++++- po/extra/an.po | 270 +++++++++++++++++++++++++++- po/extra/ar.po | 270 +++++++++++++++++++++++++++- po/extra/as.po | 270 +++++++++++++++++++++++++++- po/extra/ast.po | 270 +++++++++++++++++++++++++++- po/extra/av.po | 270 +++++++++++++++++++++++++++- po/extra/ay.po | 270 +++++++++++++++++++++++++++- po/extra/az.po | 270 +++++++++++++++++++++++++++- po/extra/ba.po | 270 +++++++++++++++++++++++++++- po/extra/be.po | 270 +++++++++++++++++++++++++++- po/extra/bg.po | 270 +++++++++++++++++++++++++++- po/extra/bh.po | 270 +++++++++++++++++++++++++++- po/extra/bi.po | 270 +++++++++++++++++++++++++++- po/extra/bm.po | 270 +++++++++++++++++++++++++++- po/extra/bn.po | 270 +++++++++++++++++++++++++++- po/extra/bo.po | 270 +++++++++++++++++++++++++++- po/extra/br.po | 270 +++++++++++++++++++++++++++- po/extra/bs.po | 270 +++++++++++++++++++++++++++- po/extra/ca.po | 270 +++++++++++++++++++++++++++- po/extra/ca@valencia.po | 270 +++++++++++++++++++++++++++- po/extra/ce.po | 270 +++++++++++++++++++++++++++- po/extra/ch.po | 270 +++++++++++++++++++++++++++- po/extra/ckb.po | 270 +++++++++++++++++++++++++++- po/extra/co.po | 270 +++++++++++++++++++++++++++- po/extra/cr.po | 270 +++++++++++++++++++++++++++- po/extra/cs.po | 270 +++++++++++++++++++++++++++- po/extra/cu.po | 270 +++++++++++++++++++++++++++- po/extra/cv.po | 270 +++++++++++++++++++++++++++- po/extra/cy.po | 270 +++++++++++++++++++++++++++- po/extra/da.po | 270 +++++++++++++++++++++++++++- po/extra/de.po | 274 ++++++++++++++++++++++++++-- po/extra/dv.po | 270 +++++++++++++++++++++++++++- po/extra/dz.po | 270 +++++++++++++++++++++++++++- po/extra/ee.po | 270 +++++++++++++++++++++++++++- po/extra/el.po | 270 +++++++++++++++++++++++++++- po/extra/en_AU.po | 270 +++++++++++++++++++++++++++- po/extra/en_CA.po | 270 +++++++++++++++++++++++++++- po/extra/en_GB.po | 270 +++++++++++++++++++++++++++- po/extra/en_ZA.po | 270 +++++++++++++++++++++++++++- po/extra/eo.po | 270 +++++++++++++++++++++++++++- po/extra/es.po | 273 +++++++++++++++++++++++++++- po/extra/et.po | 270 +++++++++++++++++++++++++++- po/extra/eu.po | 270 +++++++++++++++++++++++++++- po/extra/fa.po | 270 +++++++++++++++++++++++++++- po/extra/ff.po | 270 +++++++++++++++++++++++++++- po/extra/fi.po | 270 +++++++++++++++++++++++++++- po/extra/fil.po | 270 +++++++++++++++++++++++++++- po/extra/fj.po | 270 +++++++++++++++++++++++++++- po/extra/fo.po | 270 +++++++++++++++++++++++++++- po/extra/fr.po | 273 +++++++++++++++++++++++++++- po/extra/fr_CA.po | 270 +++++++++++++++++++++++++++- po/extra/frp.po | 270 +++++++++++++++++++++++++++- po/extra/fy.po | 270 +++++++++++++++++++++++++++- po/extra/ga.po | 270 +++++++++++++++++++++++++++- po/extra/gd.po | 270 +++++++++++++++++++++++++++- po/extra/gl.po | 270 +++++++++++++++++++++++++++- po/extra/gn.po | 270 +++++++++++++++++++++++++++- po/extra/gu.po | 270 +++++++++++++++++++++++++++- po/extra/gv.po | 270 +++++++++++++++++++++++++++- po/extra/ha.po | 270 +++++++++++++++++++++++++++- po/extra/he.po | 270 +++++++++++++++++++++++++++- po/extra/hi.po | 270 +++++++++++++++++++++++++++- po/extra/ho.po | 270 +++++++++++++++++++++++++++- po/extra/hr.po | 270 +++++++++++++++++++++++++++- po/extra/ht.po | 270 +++++++++++++++++++++++++++- po/extra/hu.po | 270 +++++++++++++++++++++++++++- po/extra/hy.po | 270 +++++++++++++++++++++++++++- po/extra/hz.po | 270 +++++++++++++++++++++++++++- po/extra/ia.po | 270 +++++++++++++++++++++++++++- po/extra/id.po | 270 +++++++++++++++++++++++++++- po/extra/id_ID.po | 270 +++++++++++++++++++++++++++- po/extra/ie.po | 270 +++++++++++++++++++++++++++- po/extra/ig.po | 270 +++++++++++++++++++++++++++- po/extra/ii.po | 270 +++++++++++++++++++++++++++- po/extra/ik.po | 270 +++++++++++++++++++++++++++- po/extra/io.po | 270 +++++++++++++++++++++++++++- po/extra/is.po | 270 +++++++++++++++++++++++++++- po/extra/it.po | 274 ++++++++++++++++++++++++++-- po/extra/iu.po | 270 +++++++++++++++++++++++++++- po/extra/ja.po | 388 +++++++++++++++++++++++----------------- po/extra/jv.po | 270 +++++++++++++++++++++++++++- po/extra/ka.po | 270 +++++++++++++++++++++++++++- po/extra/kg.po | 270 +++++++++++++++++++++++++++- po/extra/ki.po | 270 +++++++++++++++++++++++++++- po/extra/kj.po | 270 +++++++++++++++++++++++++++- po/extra/kk.po | 270 +++++++++++++++++++++++++++- po/extra/kl.po | 270 +++++++++++++++++++++++++++- po/extra/km.po | 270 +++++++++++++++++++++++++++- po/extra/kn.po | 270 +++++++++++++++++++++++++++- po/extra/ko.po | 270 +++++++++++++++++++++++++++- po/extra/kr.po | 270 +++++++++++++++++++++++++++- po/extra/ks.po | 270 +++++++++++++++++++++++++++- po/extra/ku.po | 270 +++++++++++++++++++++++++++- po/extra/kv.po | 270 +++++++++++++++++++++++++++- po/extra/kw.po | 270 +++++++++++++++++++++++++++- po/extra/ky.po | 270 +++++++++++++++++++++++++++- po/extra/la.po | 270 +++++++++++++++++++++++++++- po/extra/lb.po | 270 +++++++++++++++++++++++++++- po/extra/lg.po | 270 +++++++++++++++++++++++++++- po/extra/li.po | 270 +++++++++++++++++++++++++++- po/extra/ln.po | 270 +++++++++++++++++++++++++++- po/extra/lo.po | 270 +++++++++++++++++++++++++++- po/extra/lt.po | 270 +++++++++++++++++++++++++++- po/extra/lu.po | 270 +++++++++++++++++++++++++++- po/extra/lv.po | 270 +++++++++++++++++++++++++++- po/extra/mg.po | 270 +++++++++++++++++++++++++++- po/extra/mh.po | 270 +++++++++++++++++++++++++++- po/extra/mi.po | 270 +++++++++++++++++++++++++++- po/extra/mk.po | 270 +++++++++++++++++++++++++++- po/extra/ml.po | 270 +++++++++++++++++++++++++++- po/extra/mn.po | 270 +++++++++++++++++++++++++++- po/extra/mo.po | 270 +++++++++++++++++++++++++++- po/extra/mr.po | 270 +++++++++++++++++++++++++++- po/extra/ms.po | 270 +++++++++++++++++++++++++++- po/extra/mt.po | 270 +++++++++++++++++++++++++++- po/extra/my.po | 270 +++++++++++++++++++++++++++- po/extra/na.po | 270 +++++++++++++++++++++++++++- po/extra/nb.po | 270 +++++++++++++++++++++++++++- po/extra/nd.po | 270 +++++++++++++++++++++++++++- po/extra/ne.po | 270 +++++++++++++++++++++++++++- po/extra/ng.po | 270 +++++++++++++++++++++++++++- po/extra/nl.po | 273 +++++++++++++++++++++++++++- po/extra/nn.po | 270 +++++++++++++++++++++++++++- po/extra/no.po | 270 +++++++++++++++++++++++++++- po/extra/nr.po | 270 +++++++++++++++++++++++++++- po/extra/nv.po | 270 +++++++++++++++++++++++++++- po/extra/ny.po | 270 +++++++++++++++++++++++++++- po/extra/oc.po | 270 +++++++++++++++++++++++++++- po/extra/oj.po | 270 +++++++++++++++++++++++++++- po/extra/om.po | 270 +++++++++++++++++++++++++++- po/extra/or.po | 270 +++++++++++++++++++++++++++- po/extra/os.po | 270 +++++++++++++++++++++++++++- po/extra/pa.po | 270 +++++++++++++++++++++++++++- po/extra/pap.po | 270 +++++++++++++++++++++++++++- po/extra/pi.po | 270 +++++++++++++++++++++++++++- po/extra/pl.po | 270 +++++++++++++++++++++++++++- po/extra/ps.po | 270 +++++++++++++++++++++++++++- po/extra/pt.po | 273 +++++++++++++++++++++++++++- po/extra/pt_BR.po | 270 +++++++++++++++++++++++++++- po/extra/qu.po | 270 +++++++++++++++++++++++++++- po/extra/rm.po | 270 +++++++++++++++++++++++++++- po/extra/rn.po | 270 +++++++++++++++++++++++++++- po/extra/ro.po | 273 +++++++++++++++++++++++++++- po/extra/ru.po | 277 ++++++++++++++++++++++++++-- po/extra/rue.po | 270 +++++++++++++++++++++++++++- po/extra/rw.po | 270 +++++++++++++++++++++++++++- po/extra/sa.po | 270 +++++++++++++++++++++++++++- po/extra/sc.po | 270 +++++++++++++++++++++++++++- po/extra/sd.po | 270 +++++++++++++++++++++++++++- po/extra/se.po | 270 +++++++++++++++++++++++++++- po/extra/sg.po | 270 +++++++++++++++++++++++++++- po/extra/si.po | 270 +++++++++++++++++++++++++++- po/extra/sk.po | 270 +++++++++++++++++++++++++++- po/extra/sl.po | 270 +++++++++++++++++++++++++++- po/extra/sm.po | 270 +++++++++++++++++++++++++++- po/extra/sma.po | 270 +++++++++++++++++++++++++++- po/extra/sn.po | 270 +++++++++++++++++++++++++++- po/extra/so.po | 270 +++++++++++++++++++++++++++- po/extra/sq.po | 270 +++++++++++++++++++++++++++- po/extra/sr.po | 270 +++++++++++++++++++++++++++- po/extra/sr@latin.po | 270 +++++++++++++++++++++++++++- po/extra/ss.po | 270 +++++++++++++++++++++++++++- po/extra/st.po | 270 +++++++++++++++++++++++++++- po/extra/su.po | 270 +++++++++++++++++++++++++++- po/extra/sv.po | 270 +++++++++++++++++++++++++++- po/extra/sw.po | 270 +++++++++++++++++++++++++++- po/extra/szl.po | 270 +++++++++++++++++++++++++++- po/extra/ta.po | 270 +++++++++++++++++++++++++++- po/extra/te.po | 270 +++++++++++++++++++++++++++- po/extra/tg.po | 270 +++++++++++++++++++++++++++- po/extra/th.po | 270 +++++++++++++++++++++++++++- po/extra/ti.po | 270 +++++++++++++++++++++++++++- po/extra/tk.po | 270 +++++++++++++++++++++++++++- po/extra/tl.po | 270 +++++++++++++++++++++++++++- po/extra/tn.po | 270 +++++++++++++++++++++++++++- po/extra/to.po | 270 +++++++++++++++++++++++++++- po/extra/tr.po | 274 ++++++++++++++++++++++++++-- po/extra/ts.po | 270 +++++++++++++++++++++++++++- po/extra/tt.po | 270 +++++++++++++++++++++++++++- po/extra/tw.po | 270 +++++++++++++++++++++++++++- po/extra/ty.po | 270 +++++++++++++++++++++++++++- po/extra/ug.po | 270 +++++++++++++++++++++++++++- po/extra/uk.po | 273 +++++++++++++++++++++++++++- po/extra/ur.po | 270 +++++++++++++++++++++++++++- po/extra/uz.po | 270 +++++++++++++++++++++++++++- po/extra/ve.po | 270 +++++++++++++++++++++++++++- po/extra/vi.po | 270 +++++++++++++++++++++++++++- po/extra/vo.po | 270 +++++++++++++++++++++++++++- po/extra/wa.po | 270 +++++++++++++++++++++++++++- po/extra/wo.po | 270 +++++++++++++++++++++++++++- po/extra/xh.po | 270 +++++++++++++++++++++++++++- po/extra/yi.po | 270 +++++++++++++++++++++++++++- po/extra/yo.po | 270 +++++++++++++++++++++++++++- po/extra/za.po | 270 +++++++++++++++++++++++++++- po/extra/zh.po | 270 +++++++++++++++++++++++++++- po/extra/zh_HK.po | 270 +++++++++++++++++++++++++++- po/extra/zh_Hans.po | 270 +++++++++++++++++++++++++++- po/extra/zh_Hant.po | 270 +++++++++++++++++++++++++++- po/extra/zu.po | 270 +++++++++++++++++++++++++++- 205 files changed, 53700 insertions(+), 1805 deletions(-) diff --git a/po/extra/aa.po b/po/extra/aa.po index 91fa3cb2..7b1ef0c7 100644 --- a/po/extra/aa.po +++ b/po/extra/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ab.po b/po/extra/ab.po index c1c32800..d0743c20 100644 --- a/po/extra/ab.po +++ b/po/extra/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ace.po b/po/extra/ace.po index cd8d0700..4014aaf9 100644 --- a/po/extra/ace.po +++ b/po/extra/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ae.po b/po/extra/ae.po index 6cb6cbdd..ef8c8630 100644 --- a/po/extra/ae.po +++ b/po/extra/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/af.po b/po/extra/af.po index d64fafe7..08af41e3 100644 --- a/po/extra/af.po +++ b/po/extra/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ak.po b/po/extra/ak.po index 71d36dd4..255a28dc 100644 --- a/po/extra/ak.po +++ b/po/extra/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/am.po b/po/extra/am.po index 356ea207..009b43dd 100644 --- a/po/extra/am.po +++ b/po/extra/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/an.po b/po/extra/an.po index ab08ee70..4f9b0eb0 100644 --- a/po/extra/an.po +++ b/po/extra/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ar.po b/po/extra/ar.po index 6a36464a..5e7a8f30 100644 --- a/po/extra/ar.po +++ b/po/extra/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/as.po b/po/extra/as.po index 94bc4f96..6b510d82 100644 --- a/po/extra/as.po +++ b/po/extra/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ast.po b/po/extra/ast.po index 1e1a1e8f..5f45bc60 100644 --- a/po/extra/ast.po +++ b/po/extra/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/av.po b/po/extra/av.po index e07f0963..268c5f09 100644 --- a/po/extra/av.po +++ b/po/extra/av.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ay.po b/po/extra/ay.po index e5d275c6..4f5acf53 100644 --- a/po/extra/ay.po +++ b/po/extra/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/az.po b/po/extra/az.po index 6f498fe1..6d910b57 100644 --- a/po/extra/az.po +++ b/po/extra/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ba.po b/po/extra/ba.po index 66bc254c..de06adf8 100644 --- a/po/extra/ba.po +++ b/po/extra/ba.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/be.po b/po/extra/be.po index 090f0ae1..8ad95c99 100644 --- a/po/extra/be.po +++ b/po/extra/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bg.po b/po/extra/bg.po index b47f3bb3..9b440954 100644 --- a/po/extra/bg.po +++ b/po/extra/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bh.po b/po/extra/bh.po index 66d9e3a1..f7c79b9e 100644 --- a/po/extra/bh.po +++ b/po/extra/bh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bi.po b/po/extra/bi.po index 7d8d9c38..1d3b4bea 100644 --- a/po/extra/bi.po +++ b/po/extra/bi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bm.po b/po/extra/bm.po index d76d0b2d..961c74c9 100644 --- a/po/extra/bm.po +++ b/po/extra/bm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bn.po b/po/extra/bn.po index 6e1965fe..112c31de 100644 --- a/po/extra/bn.po +++ b/po/extra/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bo.po b/po/extra/bo.po index 55b5bbda..8104a41e 100644 --- a/po/extra/bo.po +++ b/po/extra/bo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/br.po b/po/extra/br.po index 7a300ed9..7b4172a9 100644 --- a/po/extra/br.po +++ b/po/extra/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/bs.po b/po/extra/bs.po index 81a49944..24b55335 100644 --- a/po/extra/bs.po +++ b/po/extra/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ca.po b/po/extra/ca.po index 5a6672ea..b6d13b22 100644 --- a/po/extra/ca.po +++ b/po/extra/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ca@valencia.po b/po/extra/ca@valencia.po index 681f5004..e6d07b89 100644 --- a/po/extra/ca@valencia.po +++ b/po/extra/ca@valencia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ce.po b/po/extra/ce.po index c346d03a..3e223d58 100644 --- a/po/extra/ce.po +++ b/po/extra/ce.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ch.po b/po/extra/ch.po index d759fdec..5790bbbe 100644 --- a/po/extra/ch.po +++ b/po/extra/ch.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ckb.po b/po/extra/ckb.po index f8002282..d983e6a9 100644 --- a/po/extra/ckb.po +++ b/po/extra/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/co.po b/po/extra/co.po index 4fdddd9c..40ca2933 100644 --- a/po/extra/co.po +++ b/po/extra/co.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/cr.po b/po/extra/cr.po index 52aff772..2550cfa5 100644 --- a/po/extra/cr.po +++ b/po/extra/cr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/cs.po b/po/extra/cs.po index 3b14f4b3..6a4d41a9 100644 --- a/po/extra/cs.po +++ b/po/extra/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/cu.po b/po/extra/cu.po index 03bd9fe6..d954585f 100644 --- a/po/extra/cu.po +++ b/po/extra/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/cv.po b/po/extra/cv.po index 2cfd2de6..4e414da5 100644 --- a/po/extra/cv.po +++ b/po/extra/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/cy.po b/po/extra/cy.po index 32a8e47a..7a3940e3 100644 --- a/po/extra/cy.po +++ b/po/extra/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/da.po b/po/extra/da.po index 20c849e0..fc7e33c0 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/de.po b/po/extra/de.po index d736b448..1fb2ba20 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: Uwe S \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,23 +34,277 @@ msgstr "" "Lassen Sie sich die Auslastung der Systemressourcen anzeigen, filtern und " "verwalten Sie Prozesse." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "System Monitor" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" "Verwalten von Prozessen und Überwachen der Ressourcenauslastung des Systems" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "System monitor;System usage;Task manager;" diff --git a/po/extra/dv.po b/po/extra/dv.po index 37b0c38c..a0389f1d 100644 --- a/po/extra/dv.po +++ b/po/extra/dv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/dz.po b/po/extra/dz.po index fad2565e..12cdd3d8 100644 --- a/po/extra/dz.po +++ b/po/extra/dz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ee.po b/po/extra/ee.po index 8efe0782..94fbbe5a 100644 --- a/po/extra/ee.po +++ b/po/extra/ee.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/el.po b/po/extra/el.po index 9771011c..7fb62d09 100644 --- a/po/extra/el.po +++ b/po/extra/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po index 7e3b5722..5a024cd1 100644 --- a/po/extra/en_AU.po +++ b/po/extra/en_AU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/en_CA.po b/po/extra/en_CA.po index 5896f5d3..4c7d67a6 100644 --- a/po/extra/en_CA.po +++ b/po/extra/en_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po index 8bd7ef9e..7a48d881 100644 --- a/po/extra/en_GB.po +++ b/po/extra/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/en_ZA.po b/po/extra/en_ZA.po index d230ab9c..4bdb5081 100644 --- a/po/extra/en_ZA.po +++ b/po/extra/en_ZA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/eo.po b/po/extra/eo.po index 4d2ca1b9..975975da 100644 --- a/po/extra/eo.po +++ b/po/extra/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/es.po b/po/extra/es.po index bea08455..f9be5562 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2019-06-03 23:25+0100\n" "Last-Translator: Mario Rodrigo\n" "Language-Team: none\n" @@ -31,22 +31,279 @@ msgid "Display usage of system resources, filter and manage processes." msgstr "" "Mostrar el uso de los recursos del sistema, filtrar y gestionar procesos." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Monitor del sistema" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Gestionar procesos y monitorizar el uso de recursos del sistema" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "Monitor del sistema; Uso del sistema; Gestor de tareas;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/et.po b/po/extra/et.po index 08d962d1..88f5b923 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/eu.po b/po/extra/eu.po index a7623240..c4b124a0 100644 --- a/po/extra/eu.po +++ b/po/extra/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fa.po b/po/extra/fa.po index f792c80f..f39836be 100644 --- a/po/extra/fa.po +++ b/po/extra/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ff.po b/po/extra/ff.po index 38a73b78..bfc01271 100644 --- a/po/extra/ff.po +++ b/po/extra/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fi.po b/po/extra/fi.po index f7a1e287..5cf213f0 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fil.po b/po/extra/fil.po index 75f0f651..ad823ab8 100644 --- a/po/extra/fil.po +++ b/po/extra/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fj.po b/po/extra/fj.po index 6c3ea299..13532b84 100644 --- a/po/extra/fj.po +++ b/po/extra/fj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fo.po b/po/extra/fo.po index 3125b3a0..01a228d4 100644 --- a/po/extra/fo.po +++ b/po/extra/fo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fr.po b/po/extra/fr.po index 6153475e..6849ab46 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2019-01-25 16:00+0100\n" "Last-Translator: NathanBnm\n" "Language-Team: Français\n" @@ -32,23 +32,280 @@ msgstr "" "Visualisez l'utilisation des ressources du système, filtrez et gérez les " "processus." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Moniteur système" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" "Gérez les processus et surveillez l'utilisation des ressources du système" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "Moniteur système; Utilisation du système; Gestionnaire des tâches;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po index 1eb8ef1a..22bfdbdf 100644 --- a/po/extra/fr_CA.po +++ b/po/extra/fr_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/frp.po b/po/extra/frp.po index 5f700e06..a400d094 100644 --- a/po/extra/frp.po +++ b/po/extra/frp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/fy.po b/po/extra/fy.po index fb15f270..6ca0d28a 100644 --- a/po/extra/fy.po +++ b/po/extra/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ga.po b/po/extra/ga.po index a3b3655a..37d70485 100644 --- a/po/extra/ga.po +++ b/po/extra/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/gd.po b/po/extra/gd.po index b8da69e1..0049efd4 100644 --- a/po/extra/gd.po +++ b/po/extra/gd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/gl.po b/po/extra/gl.po index d28f4308..c0d50981 100644 --- a/po/extra/gl.po +++ b/po/extra/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/gn.po b/po/extra/gn.po index 6220568a..83f230cf 100644 --- a/po/extra/gn.po +++ b/po/extra/gn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/gu.po b/po/extra/gu.po index c022985b..22daddad 100644 --- a/po/extra/gu.po +++ b/po/extra/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/gv.po b/po/extra/gv.po index a2308048..497e4db1 100644 --- a/po/extra/gv.po +++ b/po/extra/gv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ha.po b/po/extra/ha.po index efe062ac..64affff2 100644 --- a/po/extra/ha.po +++ b/po/extra/ha.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/he.po b/po/extra/he.po index 31cfb43b..c0789e35 100644 --- a/po/extra/he.po +++ b/po/extra/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/hi.po b/po/extra/hi.po index e4c14884..2a4577f9 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ho.po b/po/extra/ho.po index 17af35c1..35ebaad0 100644 --- a/po/extra/ho.po +++ b/po/extra/ho.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/hr.po b/po/extra/hr.po index 06fe5395..1e46c252 100644 --- a/po/extra/hr.po +++ b/po/extra/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ht.po b/po/extra/ht.po index 2ce853e0..922f5c65 100644 --- a/po/extra/ht.po +++ b/po/extra/ht.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/hu.po b/po/extra/hu.po index 89765a62..1d42462c 100644 --- a/po/extra/hu.po +++ b/po/extra/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/hy.po b/po/extra/hy.po index ae0ee5f9..8458e868 100644 --- a/po/extra/hy.po +++ b/po/extra/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/hz.po b/po/extra/hz.po index 37e53919..026fd0db 100644 --- a/po/extra/hz.po +++ b/po/extra/hz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ia.po b/po/extra/ia.po index 34baa4b0..a7dd497d 100644 --- a/po/extra/ia.po +++ b/po/extra/ia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/id.po b/po/extra/id.po index 741e12ba..088ae570 100644 --- a/po/extra/id.po +++ b/po/extra/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/id_ID.po b/po/extra/id_ID.po index f1d96c72..dd532018 100644 --- a/po/extra/id_ID.po +++ b/po/extra/id_ID.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ie.po b/po/extra/ie.po index d8e467cc..d50cc434 100644 --- a/po/extra/ie.po +++ b/po/extra/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ig.po b/po/extra/ig.po index 3fa4c99d..6ea9bd15 100644 --- a/po/extra/ig.po +++ b/po/extra/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ii.po b/po/extra/ii.po index 4e04fce1..5d6ab22a 100644 --- a/po/extra/ii.po +++ b/po/extra/ii.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ik.po b/po/extra/ik.po index 3701f61d..2af65a74 100644 --- a/po/extra/ik.po +++ b/po/extra/ik.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/io.po b/po/extra/io.po index 8c6bc572..67213c25 100644 --- a/po/extra/io.po +++ b/po/extra/io.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/is.po b/po/extra/is.po index 7f36ed32..c07d1722 100644 --- a/po/extra/is.po +++ b/po/extra/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/it.po b/po/extra/it.po index f9d234cc..a2727e6a 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,22 +32,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/iu.po b/po/extra/iu.po index 0d9d4791..4dd6371e 100644 --- a/po/extra/iu.po +++ b/po/extra/iu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ja.po b/po/extra/ja.po index 0b22ba28..3fed9671 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-09-07 20:25+0900\n" "Last-Translator: Ryo Nakano \n" "Language-Team: none\n" @@ -30,236 +30,294 @@ msgstr "プロセスを管理し、システムリソースを監視します" msgid "Display usage of system resources, filter and manage processes." msgstr "システムリソースの消費量を表示し、プロセスをフィルターし管理します。" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" -#: data/com.github.stsdc.monitor.desktop.in:4 -msgid "System Monitor" -msgstr "システムモニター" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "ドライバーに関する情報を表示 (Dirli のコードがベース)" -#: data/com.github.stsdc.monitor.desktop.in:6 -msgid "Manage processes and monitor resource usage of the system" -msgstr "プロセスを管理し、システムリソースの消費量を監視します" +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "ダークテーマを追加 🌚" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" msgstr "" +"Wingpanel 3にバージョンアップしました。また、Kristopher Ives が *.deb パッ" +"ケージのメンテナーになりました" -#: data/com.github.stsdc.monitor.desktop.in:14 -msgid "System monitor;System usage;Task manager;" +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" msgstr "" -"System monitor;System usage;Task manager;システムモニター;システム消費量;タス" -"クマネージャー;" +"🐛 インジケーターに何も表示されない不具合を修正しました。インストール後に再起" +"動してください ⚡️" -#~ msgid "Add info about drives (based on Dirli's code)" -#~ msgstr "ドライバーに関する情報を表示 (Dirli のコードがベース)" +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "🐛 GUI が頻繁に固まる不具合を修正する試みを行いました 🥶" -#~ msgid "Adds dark theme 🌚" -#~ msgstr "ダークテーマを追加 🌚" +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "🇳🇱 オランダ語翻訳を更新 (@Vistaus)" -#~ msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" -#~ msgstr "" -#~ "Wingpanel 3にバージョンアップしました。また、Kristopher Ives が *.deb パッ" -#~ "ケージのメンテナーになりました" +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "🇵🇹 ポルトガル語翻訳を更新 (@hugok79)" -#~ msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" -#~ msgstr "" -#~ "🐛 インジケーターに何も表示されない不具合を修正しました。インストール後に" -#~ "再起動してください ⚡️" +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "🇷🇴 ルーマニア語翻訳を更新 (@tiberiufrat)" -#~ msgid "🐛 Try to fix frequent GUI hangs 🥶" -#~ msgstr "🐛 GUI が頻繁に固まる不具合を修正する試みを行いました 🥶" +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "ストレージの使用状況を表示" -#~ msgid "🇳🇱 Update Dutch translation (@Vistaus)" -#~ msgstr "🇳🇱 オランダ語翻訳を更新 (@Vistaus)" +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "ロシア語翻訳を更新 (@camellan)" -#~ msgid "🇵🇹 Update Portuguese translation (@hugok79)" -#~ msgstr "🇵🇹 ポルトガル語翻訳を更新 (@hugok79)" +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "ポルトガル語翻訳を更新 (@hugok79)" -#~ msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -#~ msgstr "🇷🇴 ルーマニア語翻訳を更新 (@tiberiufrat)" +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "送信と受信を異なる色で表示するように修正" -#~ msgid "Display Storage usage" -#~ msgstr "ストレージの使用状況を表示" +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "ポルトガル語翻訳を更新 (@rottenpants466)" -#~ msgid "Update Russian translation (@camellan)" -#~ msgstr "ロシア語翻訳を更新 (@camellan)" +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "オランダ語翻訳を更新 (@Vistaus)" -#~ msgid "Update Portuguese translation (@hugok79)" -#~ msgstr "ポルトガル語翻訳を更新 (@hugok79)" +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "描画がなめらかになるように修正 (@DevAlien)" -#~ msgid "Different colours for Upload and Download" -#~ msgstr "送信と受信を異なる色で表示するように修正" - -#~ msgid "Update Portuguese translation (@rottenpants466)" -#~ msgstr "ポルトガル語翻訳を更新 (@rottenpants466)" +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" +"情報パネルが常に表示されるように、プロセス一覧の先頭要素を自動で選択するよう" +"に修正 (@DevAlien)" -#~ msgid "Update Dutch translation (@Vistaus)" -#~ msgstr "オランダ語翻訳を更新 (@Vistaus)" +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "CPU 温度をインジケーターに表示するように修正" -#~ msgid "Smoother animations (@DevAlien)" -#~ msgstr "描画がなめらかになるように修正 (@DevAlien)" +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "“システム”タブを改善" -#~ msgid "" -#~ "Preselect first entry so that the info panel is always open (@DevAlien)" -#~ msgstr "" -#~ "情報パネルが常に表示されるように、プロセス一覧の先頭要素を自動で選択するよ" -#~ "うに修正 (@DevAlien)" +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "最後に開いたタブを復元するように修正 (@ryonakano)" -#~ msgid "Show CPU temperature in the Indicator" -#~ msgstr "CPU 温度をインジケーターに表示するように修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "日本語翻訳を更新 (Ryo Nakano)" -#~ msgid "Better System Tab" -#~ msgstr "“システム”タブを改善" +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "“システム”タブを表示している場合は検索欄を無効化するように修正" -#~ msgid "Save last opened view (@ryonakano)" -#~ msgstr "最後に開いたタブを復元するように修正 (@ryonakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "スクリーンショットを追加" -#~ msgid "Update Japanese translation (Ryo Nakano)" -#~ msgstr "日本語翻訳を更新 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "システムリソースを表示するタブを追加" -#~ msgid "Disable search entry, when System tab is active" -#~ msgstr "“システム”タブを表示している場合は検索欄を無効化するように修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "プロセスの状態を示すラベルにツールチップを追加 (Ryo Nakano)" -#~ msgid "Add screenshots" -#~ msgstr "スクリーンショットを追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "軽微なバグ修正" -#~ msgid "Add System resources tab" -#~ msgstr "システムリソースを表示するタブを追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "並べ替えを示す矢印アイコンを修正" -#~ msgid "Added tooltips to process state label (Ryo Nakano)" -#~ msgstr "プロセスの状態を示すラベルにツールチップを追加 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "ロシア語翻訳を更新 (camellan)" -#~ msgid "Small bugfix" -#~ msgstr "軽微なバグ修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "トルコ語翻訳を追加 (Harun Yasar)" -#~ msgid "Fix sorting arrows" -#~ msgstr "並べ替えを示す矢印アイコンを修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" +"最新バージョンの live-chart に更新 (Laurent Callarec) ← グラフを作るためのラ" +"イブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" -#~ msgid "Update Russian translation (camellan)" -#~ msgstr "ロシア語翻訳を更新 (camellan)" +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "サイドバーにプロセスの詳細情報を表示する機能を追加" -#~ msgid "Add Turkish translation (Harun Yasar)" -#~ msgstr "トルコ語翻訳を追加 (Harun Yasar)" +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "ツールチップに CPU 使用率を表示するように修正 (Ryo Nakano)" -#~ msgid "" -#~ "Use newest version of live-chart (Laurent Callarec) ← Check his lib for " -#~ "creating charts, it's amazing!" -#~ msgstr "" -#~ "最新バージョンの live-chart に更新 (Laurent Callarec) ← グラフを作るための" -#~ "ライブラリです。ぜひ一度見に行っていただきたいほど素晴らしい!" +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "クラッシュや CPU 使用率を占有してしまう不具合を部分的に修正" -#~ msgid "Detailed process info in sidebar" -#~ msgstr "サイドバーにプロセスの詳細情報を表示する機能を追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "ドイツ語翻訳を更新 (Carsten Dietrich)" -#~ msgid "CPU frequency in tooltip (Ryo Nakano)" -#~ msgstr "ツールチップに CPU 使用率を表示するように修正 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "ポルトガル語翻訳を更新 (Hugo Carvalho)" -#~ msgid "Bugfix (potential) of crushes and high CPU usage" -#~ msgstr "クラッシュや CPU 使用率を占有してしまう不具合を部分的に修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "フランス語翻訳を更新 (Nathan Bonnemains と Skeudwenn)" -#~ msgid "Update German translation (Carsten Dietrich)" -#~ msgstr "ドイツ語翻訳を更新 (Carsten Dietrich)" +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "スワップが使用できない場合は使用率を表示しないように修正 (Ryo Nakano)" -#~ msgid "Update Portuguese translation (Hugo Carvalho)" -#~ msgstr "ポルトガル語翻訳を更新 (Hugo Carvalho)" +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "イタリア語翻訳を更新 (Mirko Brombin)" -#~ msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -#~ msgstr "フランス語翻訳を更新 (Nathan Bonnemains と Skeudwenn)" +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "スワップ使用率を表示する機能を追加 (Ryo Nakano)" -#~ msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" -#~ msgstr "" -#~ "スワップが使用できない場合は使用率を表示しないように修正 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "コードをリファクタリング (Ryo Nakano)" -#~ msgid "Update Italian translation (Mirko Brombin)" -#~ msgstr "イタリア語翻訳を更新 (Mirko Brombin)" +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "ウィンドウの内容が表示されない不具合を修正 (Ryo Nakano)" -#~ msgid "Show swap usage (Ryo Nakano)" -#~ msgstr "スワップ使用率を表示する機能を追加 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" +"インジケーター機能が有効になっている場合も、プロセスが選択されない不具合を修" +"正 (Ryo Nakano)" -#~ msgid "Code refactoring (Ryo Nakano)" -#~ msgstr "コードをリファクタリング (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" +"プロセスが選択されていない状態で \"プロセスを終了\" ボタンや \"プロセスを強制" +"終了\" ボタンを押すと、アプリがクラッシュする不具合を修正 (Ryo Nakano)" -#~ msgid "Fix contents of the window are not shown (Ryo Nakano)" -#~ msgstr "ウィンドウの内容が表示されない不具合を修正 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" +"プロセスの“強制終了”と“終了”とで別々のボタンに変更しました。(Evan Buss)" -#~ msgid "" -#~ "ix no row is still selected when indicator options are enabled (Ryo " -#~ "Nakano)" -#~ msgstr "" -#~ "インジケーター機能が有効になっている場合も、プロセスが選択されない不具合を" -#~ "修正 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "英語のスクリーンショットに変更 (Christopher Crouse)" -#~ msgid "" -#~ "Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " -#~ "process is selected (Ryo Nakano)" -#~ msgstr "" -#~ "プロセスが選択されていない状態で \"プロセスを終了\" ボタンや \"プロセスを" -#~ "強制終了\" ボタンを押すと、アプリがクラッシュする不具合を修正 (Ryo Nakano)" +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" +"デフォルトのディスプレイが X11 かどうかを確認するように修正 (Hannes Schulze)" -#~ msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" -#~ msgstr "" -#~ "プロセスの“強制終了”と“終了”とで別々のボタンに変更しました。(Evan Buss)" +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "スペイン語翻訳を更新 (Mario Rodrigo)" -#~ msgid "Change screenshot to English (Christopher Crouse)" -#~ msgstr "英語のスクリーンショットに変更 (Christopher Crouse)" +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "“バックグラウンドで起動”オプションを UI に追加" -#~ msgid "Check if the default display is a X11 display (Hannes Schulze)" -#~ msgstr "" -#~ "デフォルトのディスプレイが X11 かどうかを確認するように修正 (Hannes " -#~ "Schulze)" +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "“バックグラウンドで起動”コマンドラインオプションを追加" -#~ msgid "Update Spanish translation (Mario Rodrigo)" -#~ msgstr "スペイン語翻訳を更新 (Mario Rodrigo)" +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "イタリア語とポルトガル語の翻訳を更新" -#~ msgid "Add start-in-background option to UI" -#~ msgstr "“バックグラウンドで起動”オプションを UI に追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "オランダ語、フランス語、スペイン語の翻訳を更新" -#~ msgid "Add start-in-background command line option" -#~ msgstr "“バックグラウンドで起動”コマンドラインオプションを追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "日本語翻訳を修正" -#~ msgid "Add Italian and Portuguese translations" -#~ msgstr "イタリア語とポルトガル語の翻訳を更新" +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "軽微なバグ修正" -#~ msgid "Update Dutch, French and Spanish translations" -#~ msgstr "オランダ語、フランス語、スペイン語の翻訳を更新" +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "“プロセスを終了”ボタンを赤色に変更" -#~ msgid "Fix Japanese translation" -#~ msgstr "日本語翻訳を修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "日本語翻訳を追加" -#~ msgid "Minor bug fix" -#~ msgstr "軽微なバグ修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "CPU と RAM のアイコンを追加" -#~ msgid "Make End process button red" -#~ msgstr "“プロセスを終了”ボタンを赤色に変更" +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "フリーズの原因となっていたバグを修正" -#~ msgid "Add Japanese translation" -#~ msgstr "日本語翻訳を追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "ポーランド語とロシア語の翻訳を更新" -#~ msgid "Add CPU and RAM icons" -#~ msgstr "CPU と RAM のアイコンを追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "専用のインジケーターを追加" -#~ msgid "Fix bug, that caused hanging" -#~ msgstr "フリーズの原因となっていたバグを修正" +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "メタデータ用のフランス語翻訳を追加" -#~ msgid "Update Polish and Russian translation" -#~ msgstr "ポーランド語とロシア語の翻訳を更新" +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" +"プロセスのアイコンが存在しない場合、列の一つ前のプロセスと同じアイコンを表示" +"していた不具合を修正" -#~ msgid "Add Monitor indicator" -#~ msgstr "専用のインジケーターを追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "検索処理が文字入力と干渉する不具合を修正" -#~ msgid "Add missing extra French translations" -#~ msgstr "メタデータ用のフランス語翻訳を追加" +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "POTFILES を修正" -#~ msgid "" -#~ "Fix: if icon missing for the process, icon is taken from previous process" -#~ msgstr "" -#~ "プロセスのアイコンが存在しない場合、列の一つ前のプロセスと同じアイコンを表" -#~ "示していた不具合を修正" +#: data/com.github.stsdc.monitor.desktop.in:4 +msgid "System Monitor" +msgstr "システムモニター" -#~ msgid "Fix: search erases my input while I'm typing" -#~ msgstr "検索処理が文字入力と干渉する不具合を修正" +#: data/com.github.stsdc.monitor.desktop.in:5 +msgid "Manage processes and monitor resource usage of the system" +msgstr "プロセスを管理し、システムリソースの消費量を監視します" -#~ msgid "Fix POTFILES" -#~ msgstr "POTFILES を修正" +#: data/com.github.stsdc.monitor.desktop.in:12 +msgid "System monitor;System usage;Task manager;" +msgstr "" +"System monitor;System usage;Task manager;システムモニター;システム消費量;タス" +"クマネージャー;" diff --git a/po/extra/jv.po b/po/extra/jv.po index 8264684e..35659ec3 100644 --- a/po/extra/jv.po +++ b/po/extra/jv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ka.po b/po/extra/ka.po index 34b0a2df..6e76e4d9 100644 --- a/po/extra/ka.po +++ b/po/extra/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kg.po b/po/extra/kg.po index f09a062e..44233540 100644 --- a/po/extra/kg.po +++ b/po/extra/kg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ki.po b/po/extra/ki.po index 4d90ca38..64e68056 100644 --- a/po/extra/ki.po +++ b/po/extra/ki.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kj.po b/po/extra/kj.po index 75b438cd..6c35f8ef 100644 --- a/po/extra/kj.po +++ b/po/extra/kj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kk.po b/po/extra/kk.po index 9672d792..268cf99d 100644 --- a/po/extra/kk.po +++ b/po/extra/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kl.po b/po/extra/kl.po index cddad260..83753e52 100644 --- a/po/extra/kl.po +++ b/po/extra/kl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/km.po b/po/extra/km.po index 017a070f..8c165e0a 100644 --- a/po/extra/km.po +++ b/po/extra/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kn.po b/po/extra/kn.po index 67283e1c..ac873959 100644 --- a/po/extra/kn.po +++ b/po/extra/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ko.po b/po/extra/ko.po index 1ec5a644..9ab7ac26 100644 --- a/po/extra/ko.po +++ b/po/extra/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kr.po b/po/extra/kr.po index ad957c54..ca2aaf02 100644 --- a/po/extra/kr.po +++ b/po/extra/kr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ks.po b/po/extra/ks.po index 3b31a9cf..59cfcb76 100644 --- a/po/extra/ks.po +++ b/po/extra/ks.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ku.po b/po/extra/ku.po index 75969a71..d29286fc 100644 --- a/po/extra/ku.po +++ b/po/extra/ku.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kv.po b/po/extra/kv.po index c66384e1..9879fcbf 100644 --- a/po/extra/kv.po +++ b/po/extra/kv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/kw.po b/po/extra/kw.po index 941bcf5c..ef4c9246 100644 --- a/po/extra/kw.po +++ b/po/extra/kw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ky.po b/po/extra/ky.po index 97d45c2a..2aa80150 100644 --- a/po/extra/ky.po +++ b/po/extra/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/la.po b/po/extra/la.po index 6ac0ba6b..f825c314 100644 --- a/po/extra/la.po +++ b/po/extra/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/lb.po b/po/extra/lb.po index 7e65c542..e8d78dc5 100644 --- a/po/extra/lb.po +++ b/po/extra/lb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/lg.po b/po/extra/lg.po index e9fd69de..f172accc 100644 --- a/po/extra/lg.po +++ b/po/extra/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/li.po b/po/extra/li.po index 677a6edc..c5a55db0 100644 --- a/po/extra/li.po +++ b/po/extra/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ln.po b/po/extra/ln.po index 5661e441..b72bf8e9 100644 --- a/po/extra/ln.po +++ b/po/extra/ln.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/lo.po b/po/extra/lo.po index a67b02b3..ef1bb7e0 100644 --- a/po/extra/lo.po +++ b/po/extra/lo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/lt.po b/po/extra/lt.po index 5c7d8935..4abc4a80 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" "Language-Team: Lithuanian \n" "Language-Team: none\n" @@ -31,22 +31,279 @@ msgstr "Beheer processen en monitor systeembronnen" msgid "Display usage of system resources, filter and manage processes." msgstr "Toon het gebruik van systeembronnen en filter en beheer processen." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Systeemmonitor" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Beheer processen en monitor de gebruikte systeembronnen" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "Systeemmonitor;Systeemgebruik;Taakbeheer;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/nn.po b/po/extra/nn.po index 547d8feb..0da761f3 100644 --- a/po/extra/nn.po +++ b/po/extra/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/no.po b/po/extra/no.po index e3c269a3..5523dd0e 100644 --- a/po/extra/no.po +++ b/po/extra/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/nr.po b/po/extra/nr.po index 61eac3e8..97a56886 100644 --- a/po/extra/nr.po +++ b/po/extra/nr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/nv.po b/po/extra/nv.po index bafbc472..a0e5adbb 100644 --- a/po/extra/nv.po +++ b/po/extra/nv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ny.po b/po/extra/ny.po index e90da3a6..bdd9c589 100644 --- a/po/extra/ny.po +++ b/po/extra/ny.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/oc.po b/po/extra/oc.po index 66bd1d59..b4bd0c09 100644 --- a/po/extra/oc.po +++ b/po/extra/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/oj.po b/po/extra/oj.po index 8b222719..ff5b36dc 100644 --- a/po/extra/oj.po +++ b/po/extra/oj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/om.po b/po/extra/om.po index d2d015d0..922db0db 100644 --- a/po/extra/om.po +++ b/po/extra/om.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/or.po b/po/extra/or.po index caa0bc22..dc62c01d 100644 --- a/po/extra/or.po +++ b/po/extra/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/os.po b/po/extra/os.po index 14fff7e9..a2050193 100644 --- a/po/extra/os.po +++ b/po/extra/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/pa.po b/po/extra/pa.po index e2bf92bb..3d65b0d9 100644 --- a/po/extra/pa.po +++ b/po/extra/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/pap.po b/po/extra/pap.po index 42d868a3..a935b61f 100644 --- a/po/extra/pap.po +++ b/po/extra/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/pi.po b/po/extra/pi.po index 8dcefbf1..920dd9ea 100644 --- a/po/extra/pi.po +++ b/po/extra/pi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/pl.po b/po/extra/pl.po index c4af47e3..2de6a04b 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" "Language-Team: Polish \n" "Language-Team: \n" @@ -33,22 +33,279 @@ msgid "Display usage of system resources, filter and manage processes." msgstr "" "Mostrar a utilização dos recursos do sistema, filtrar e gerir processos." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Monitor do Sistema" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Gerir processos e monitorizar a utilização de recursos do sistema" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "Monitor do Sistema;Utilização do Sistema;Gestor de Tarefas;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index 4c824a78..4493a98f 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/qu.po b/po/extra/qu.po index 1d23a73d..fc1090b2 100644 --- a/po/extra/qu.po +++ b/po/extra/qu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/rm.po b/po/extra/rm.po index ed00ff6b..214d0500 100644 --- a/po/extra/rm.po +++ b/po/extra/rm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/rn.po b/po/extra/rn.po index 3b06be61..37fab20d 100644 --- a/po/extra/rn.po +++ b/po/extra/rn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ro.po b/po/extra/ro.po index c63082a5..b0e0e310 100644 --- a/po/extra/ro.po +++ b/po/extra/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2020-12-16 09:58+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -34,24 +34,281 @@ msgstr "" "Afișează gradul de utilizare a resurselor de sistem, filtrează și " "gestionează procesele." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Monitor de sistem" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Gestionează procesele și monitorizează resursele de sistem" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" "System monitor;System usage;Task manager;Monitor de sistem;Manager de " "activități;Procese;Utilizarea sistemului;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/ru.po b/po/extra/ru.po index 3e4bd814..d445861b 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: кубик круглый \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,24 +35,281 @@ msgstr "" "Отображение использования системных ресурсов, фильтрование и управление " "процессами." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Системный монитор" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Управление процессами и мониторинг использования ресурсов системы" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" "System monitor;System usage;Task manager;Системный монитор;Использование " "системных ресурсов;Диспетчер задач;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/rue.po b/po/extra/rue.po index a574698e..935ca896 100644 --- a/po/extra/rue.po +++ b/po/extra/rue.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/rw.po b/po/extra/rw.po index 398a6465..382630e6 100644 --- a/po/extra/rw.po +++ b/po/extra/rw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sa.po b/po/extra/sa.po index c8c70845..a8afb921 100644 --- a/po/extra/sa.po +++ b/po/extra/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sc.po b/po/extra/sc.po index b52c8f2a..5eb69b2f 100644 --- a/po/extra/sc.po +++ b/po/extra/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sd.po b/po/extra/sd.po index ef220416..73837766 100644 --- a/po/extra/sd.po +++ b/po/extra/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/se.po b/po/extra/se.po index 0c920913..1150631b 100644 --- a/po/extra/se.po +++ b/po/extra/se.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sg.po b/po/extra/sg.po index d08a3edd..fa8b5f76 100644 --- a/po/extra/sg.po +++ b/po/extra/sg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/si.po b/po/extra/si.po index f4a9888f..422ec888 100644 --- a/po/extra/si.po +++ b/po/extra/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sk.po b/po/extra/sk.po index 29598dfd..b7b16f30 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sl.po b/po/extra/sl.po index fbf64b32..6ce938bc 100644 --- a/po/extra/sl.po +++ b/po/extra/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sm.po b/po/extra/sm.po index f0b67dd3..7372d799 100644 --- a/po/extra/sm.po +++ b/po/extra/sm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sma.po b/po/extra/sma.po index 97e3c926..5a5fe27d 100644 --- a/po/extra/sma.po +++ b/po/extra/sma.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sn.po b/po/extra/sn.po index 5f61777e..48d3cfe9 100644 --- a/po/extra/sn.po +++ b/po/extra/sn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/so.po b/po/extra/so.po index 59132a51..6c8cd41e 100644 --- a/po/extra/so.po +++ b/po/extra/so.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sq.po b/po/extra/sq.po index f91336e6..8009f11f 100644 --- a/po/extra/sq.po +++ b/po/extra/sq.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sr.po b/po/extra/sr.po index 40ac7296..09661a8a 100644 --- a/po/extra/sr.po +++ b/po/extra/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sr@latin.po b/po/extra/sr@latin.po index bc25db53..2bf1c521 100644 --- a/po/extra/sr@latin.po +++ b/po/extra/sr@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ss.po b/po/extra/ss.po index 9a9551d0..b18e2ac5 100644 --- a/po/extra/ss.po +++ b/po/extra/ss.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/st.po b/po/extra/st.po index 4917de6f..9fc682be 100644 --- a/po/extra/st.po +++ b/po/extra/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/su.po b/po/extra/su.po index aab250c9..a3110851 100644 --- a/po/extra/su.po +++ b/po/extra/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sv.po b/po/extra/sv.po index 9338c86e..01d82008 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/sw.po b/po/extra/sw.po index c7ec2acd..8846d9e3 100644 --- a/po/extra/sw.po +++ b/po/extra/sw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/szl.po b/po/extra/szl.po index 70141e08..9a8ee38d 100644 --- a/po/extra/szl.po +++ b/po/extra/szl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ta.po b/po/extra/ta.po index c77231d5..c2b041ae 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/te.po b/po/extra/te.po index 53aed17f..878be5d5 100644 --- a/po/extra/te.po +++ b/po/extra/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tg.po b/po/extra/tg.po index 586e5d84..091f7902 100644 --- a/po/extra/tg.po +++ b/po/extra/tg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/th.po b/po/extra/th.po index 700a36e7..37fd6690 100644 --- a/po/extra/th.po +++ b/po/extra/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ti.po b/po/extra/ti.po index dbe47100..f937ce00 100644 --- a/po/extra/ti.po +++ b/po/extra/ti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tk.po b/po/extra/tk.po index 262d74d2..1355fa87 100644 --- a/po/extra/tk.po +++ b/po/extra/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tl.po b/po/extra/tl.po index 774660fd..475e2639 100644 --- a/po/extra/tl.po +++ b/po/extra/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tn.po b/po/extra/tn.po index af7b071f..fdbbf92f 100644 --- a/po/extra/tn.po +++ b/po/extra/tn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/to.po b/po/extra/to.po index f7399b6b..fc9471aa 100644 --- a/po/extra/to.po +++ b/po/extra/to.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tr.po b/po/extra/tr.po index 049f8037..d970e8c8 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,22 +32,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ts.po b/po/extra/ts.po index d0f7f729..c6510507 100644 --- a/po/extra/ts.po +++ b/po/extra/ts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tt.po b/po/extra/tt.po index 92c0331d..861909b4 100644 --- a/po/extra/tt.po +++ b/po/extra/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/tw.po b/po/extra/tw.po index 251c8704..b68892ce 100644 --- a/po/extra/tw.po +++ b/po/extra/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ty.po b/po/extra/ty.po index fb1783c9..11ac2212 100644 --- a/po/extra/ty.po +++ b/po/extra/ty.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ug.po b/po/extra/ug.po index 1f6f178b..05249c79 100644 --- a/po/extra/ug.po +++ b/po/extra/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/uk.po b/po/extra/uk.po index 665e9a9c..dcd3a8fa 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: 2021-07-08 02:51+0300\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" @@ -34,24 +34,281 @@ msgstr "" "Показ використовування системних ресурсів, фільтрування та керування " "процесами." -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "Stanisław Dac" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "Системний монітор" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "Керування процесами та спостереження за системними ресурсами" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "com.github.stsdc.monitor" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" "Системний монітор; Використовування системи; Диспетчер завдань;System " "monitor;System usage;Task manager;" + +#~ msgid "com.github.stsdc.monitor" +#~ msgstr "com.github.stsdc.monitor" diff --git a/po/extra/ur.po b/po/extra/ur.po index 9e568928..94c012ba 100644 --- a/po/extra/ur.po +++ b/po/extra/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/uz.po b/po/extra/uz.po index b167d4dd..1309e4d9 100644 --- a/po/extra/uz.po +++ b/po/extra/uz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/ve.po b/po/extra/ve.po index eccd09d2..d258784f 100644 --- a/po/extra/ve.po +++ b/po/extra/ve.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/vi.po b/po/extra/vi.po index 3679c66c..2d29257b 100644 --- a/po/extra/vi.po +++ b/po/extra/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/vo.po b/po/extra/vo.po index c9d49148..8e85670f 100644 --- a/po/extra/vo.po +++ b/po/extra/vo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/wa.po b/po/extra/wa.po index 4bdd5cf8..15139977 100644 --- a/po/extra/wa.po +++ b/po/extra/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/wo.po b/po/extra/wo.po index 39095bc3..b9d3f175 100644 --- a/po/extra/wo.po +++ b/po/extra/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/xh.po b/po/extra/xh.po index 60b50aa0..85e43db1 100644 --- a/po/extra/xh.po +++ b/po/extra/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/yi.po b/po/extra/yi.po index 27346236..c0a68e99 100644 --- a/po/extra/yi.po +++ b/po/extra/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/yo.po b/po/extra/yo.po index 19fe4dd0..bf277a0a 100644 --- a/po/extra/yo.po +++ b/po/extra/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/za.po b/po/extra/za.po index 98847bd9..43de8d21 100644 --- a/po/extra/za.po +++ b/po/extra/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/zh.po b/po/extra/zh.po index 615dae5d..c7dfc755 100644 --- a/po/extra/zh.po +++ b/po/extra/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/zh_HK.po b/po/extra/zh_HK.po index c7cb295a..a8a5a897 100644 --- a/po/extra/zh_HK.po +++ b/po/extra/zh_HK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/zh_Hans.po b/po/extra/zh_Hans.po index 10a48fa0..77424c58 100644 --- a/po/extra/zh_Hans.po +++ b/po/extra/zh_Hans.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/zh_Hant.po b/po/extra/zh_Hant.po index bebcc0ad..25e2a7bc 100644 --- a/po/extra/zh_Hant.po +++ b/po/extra/zh_Hant.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" diff --git a/po/extra/zu.po b/po/extra/zu.po index 7dac0da0..d133d3c9 100644 --- a/po/extra/zu.po +++ b/po/extra/zu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-20 22:25+0900\n" +"POT-Creation-Date: 2024-10-09 20:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -29,22 +29,276 @@ msgstr "" msgid "Display usage of system resources, filter and manage processes." msgstr "" -#: data/com.github.stsdc.monitor.appdata.xml.in:22 +#: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" msgstr "" +#: data/com.github.stsdc.monitor.appdata.xml.in:33 +msgid "Add info about drives (based on Dirli's code)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:38 +msgid "Adds dark theme 🌚" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:43 +msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:48 +msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:54 +msgid "🐛 Try to fix frequent GUI hangs 🥶" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:55 +msgid "🇳🇱 Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:56 +msgid "🇵🇹 Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:57 +msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:64 +msgid "Display Storage usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:65 +msgid "Update Russian translation (@camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:66 +msgid "Update Portuguese translation (@hugok79)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:67 +msgid "Different colours for Upload and Download" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:74 +#: data/com.github.stsdc.monitor.appdata.xml.in:86 +msgid "Update Portuguese translation (@rottenpants466)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:75 +msgid "Update Dutch translation (@Vistaus)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:76 +msgid "Smoother animations (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:77 +msgid "Preselect first entry so that the info panel is always open (@DevAlien)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:78 +msgid "Show CPU temperature in the Indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:85 +msgid "Better System Tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:87 +msgid "Save last opened view (@ryonakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:94 +#: data/com.github.stsdc.monitor.appdata.xml.in:157 +msgid "Update Japanese translation (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:95 +msgid "Disable search entry, when System tab is active" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:96 +msgid "Add screenshots" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:103 +msgid "Add System resources tab" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:110 +msgid "Added tooltips to process state label (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:111 +msgid "Small bugfix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:118 +msgid "Fix sorting arrows" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:119 +#: data/com.github.stsdc.monitor.appdata.xml.in:155 +#: data/com.github.stsdc.monitor.appdata.xml.in:169 +msgid "Update Russian translation (camellan)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:120 +msgid "Add Turkish translation (Harun Yasar)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:121 +msgid "" +"Use newest version of live-chart (Laurent Callarec) ← Check his lib for " +"creating charts, it's amazing!" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:128 +msgid "Detailed process info in sidebar" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:129 +msgid "CPU frequency in tooltip (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:136 +msgid "Bugfix (potential) of crushes and high CPU usage" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:137 +msgid "Update German translation (Carsten Dietrich)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:144 +msgid "Update Portuguese translation (Hugo Carvalho)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:145 +msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:146 +msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:153 +msgid "Update Italian translation (Mirko Brombin)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:154 +msgid "Show swap usage (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:156 +msgid "Code refactoring (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:164 +msgid "Fix contents of the window are not shown (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:165 +msgid "" +"ix no row is still selected when indicator options are enabled (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:166 +msgid "" +"Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " +"process is selected (Ryo Nakano)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:167 +msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:168 +msgid "Change screenshot to English (Christopher Crouse)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:170 +msgid "Check if the default display is a X11 display (Hannes Schulze)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:171 +msgid "Update Spanish translation (Mario Rodrigo)" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:178 +msgid "Add start-in-background option to UI" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:185 +msgid "Add start-in-background command line option" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:186 +msgid "Add Italian and Portuguese translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:187 +msgid "Update Dutch, French and Spanish translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:188 +msgid "Fix Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:195 +msgid "Minor bug fix" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:196 +msgid "Make End process button red" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:197 +msgid "Add Japanese translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:204 +msgid "Add CPU and RAM icons" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:205 +msgid "Fix bug, that caused hanging" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:206 +msgid "Update Polish and Russian translation" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:213 +msgid "Add Monitor indicator" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:214 +msgid "Add missing extra French translations" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:215 +msgid "" +"Fix: if icon missing for the process, icon is taken from previous process" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:216 +msgid "Fix: search erases my input while I'm typing" +msgstr "" + +#: data/com.github.stsdc.monitor.appdata.xml.in:217 +msgid "Fix POTFILES" +msgstr "" + #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:6 +#: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" msgstr "" -#: data/com.github.stsdc.monitor.desktop.in:10 -msgid "com.github.stsdc.monitor" -msgstr "" - -#: data/com.github.stsdc.monitor.desktop.in:14 +#: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" msgstr "" From 35e4ad9447c55d4784138998dc4c1206910d3d76 Mon Sep 17 00:00:00 2001 From: Weblate Date: Thu, 10 Oct 2024 06:45:00 +0000 Subject: [PATCH 465/486] Update translation files Updated by "Update LINGUAS file" add-on in Weblate. Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ --- po/LINGUAS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/LINGUAS b/po/LINGUAS index cadc3834..8f51107e 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1 +1 @@ -de es fr it ja lt nl pl pt ro ru tr uk +aa ab ace ae af ak am an ar as ast av ay az ba be bg bh bi bm bn bo br bs ca ca@valencia ce ch ckb co cr cs cu cv cy da de dv dz ee el en_AU en_CA en_GB en_ZA eo es et eu fa ff fi fil fj fo fr fr_CA frp fy ga gd gl gn gu gv ha he hi ho hr ht hu hy hz ia id id_ID ie ig ii ik io is it iu ja jv ka kg ki kj kk kl km kn ko kr ks ku kv kw ky la lb lg li ln lo lt lu lv mg mh mi mk ml mn mo mr ms mt my na nb nd ne ng nl nn no nr nv ny oc oj om or os pa pap pi pl ps pt pt_BR qu rm rn ro ru rue rw sa sc sd se sg si sk sl sm sma sn so sq sr sr@latin ss st su sv sw szl ta te tg th ti tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa wo xh yi yo za zh zh_HK zh_Hans zh_Hant zu From d3762554c2e640b8432074a3c1507f977d81a64f Mon Sep 17 00:00:00 2001 From: Weblate Date: Thu, 10 Oct 2024 08:45:00 +0000 Subject: [PATCH 466/486] Update translation files Updated by "Update LINGUAS file" add-on in Weblate. Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ --- po/extra/LINGUAS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS index 81823c3b..8f51107e 100644 --- a/po/extra/LINGUAS +++ b/po/extra/LINGUAS @@ -1 +1 @@ -de es fr ja lt nl pl pt ro ru uk +aa ab ace ae af ak am an ar as ast av ay az ba be bg bh bi bm bn bo br bs ca ca@valencia ce ch ckb co cr cs cu cv cy da de dv dz ee el en_AU en_CA en_GB en_ZA eo es et eu fa ff fi fil fj fo fr fr_CA frp fy ga gd gl gn gu gv ha he hi ho hr ht hu hy hz ia id id_ID ie ig ii ik io is it iu ja jv ka kg ki kj kk kl km kn ko kr ks ku kv kw ky la lb lg li ln lo lt lu lv mg mh mi mk ml mn mo mr ms mt my na nb nd ne ng nl nn no nr nv ny oc oj om or os pa pap pi pl ps pt pt_BR qu rm rn ro ru rue rw sa sc sd se sg si sk sl sm sma sn so sq sr sr@latin ss st su sv sw szl ta te tg th ti tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa wo xh yi yo za zh zh_HK zh_Hans zh_Hant zu From 7fbe1ea43819d29c7dd499d71c95aafb9c868314 Mon Sep 17 00:00:00 2001 From: Italo Felipe Capasso Ballesteros Date: Wed, 9 Oct 2024 23:03:46 +0000 Subject: [PATCH 467/486] Translated using Weblate (Spanish) Currently translated at 100.0% (69 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/es/ --- po/extra/es.po | 137 ++++++++++++++++++++++++++++++------------------- 1 file changed, 83 insertions(+), 54 deletions(-) diff --git a/po/extra/es.po b/po/extra/es.po index f9be5562..70a1e35e 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -8,14 +8,16 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2019-06-03 23:25+0100\n" -"Last-Translator: Mario Rodrigo\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"Last-Translator: Italo Felipe Capasso Ballesteros \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 @@ -24,12 +26,11 @@ msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" -msgstr "Gestionar procesos y monitorizar los recursos del sistema" +msgstr "Gestiona procesos y monitoriza los recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "" -"Mostrar el uso de los recursos del sistema, filtrar y gestionar procesos." +msgstr "Muestra el uso de los recursos del sistema, filtra y gestiona procesos." #: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" @@ -37,261 +38,289 @@ msgstr "Stanisław Dac" #: data/com.github.stsdc.monitor.appdata.xml.in:33 msgid "Add info about drives (based on Dirli's code)" -msgstr "" +msgstr "Se agregó información acerca de discos (con base en código de Dirli)" #: data/com.github.stsdc.monitor.appdata.xml.in:38 msgid "Adds dark theme 🌚" -msgstr "" +msgstr "Se agregó el tema oscuro 🌚" #: data/com.github.stsdc.monitor.appdata.xml.in:43 msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" msgstr "" +"Ahora se usa Wingpanel v3. Se agregó un nuevo mantenedor para el paquete *." +"deb: Kristopher Ives" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" msgstr "" +"🐛 Se debió corregir el indicador mostrándose vacío. Por favor reiniciar " +"después de instalar ⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" -msgstr "" +msgstr "🐛 Se trató de corregir bloqueos frecuentes de la interfaz🥶" #: data/com.github.stsdc.monitor.appdata.xml.in:55 msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "🇳🇱 Se actualizó la traducción al holandés (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:56 msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "🇵🇹 Se actualizó la traducción al portugués (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:57 msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "" +msgstr "🇷🇴 Se agregó traducción al rumano (@tiberiufrat)" #: data/com.github.stsdc.monitor.appdata.xml.in:64 msgid "Display Storage usage" -msgstr "" +msgstr "Ahora se muestra la utilización del almacenamiento" #: data/com.github.stsdc.monitor.appdata.xml.in:65 msgid "Update Russian translation (@camellan)" -msgstr "" +msgstr "Se actualizó la traducción al ruso (@camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:66 msgid "Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "Se actualizó la traducción al portugués (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:67 msgid "Different colours for Upload and Download" -msgstr "" +msgstr "Se agregaron diferentes colores para carga y descarga de red" #: data/com.github.stsdc.monitor.appdata.xml.in:74 #: data/com.github.stsdc.monitor.appdata.xml.in:86 msgid "Update Portuguese translation (@rottenpants466)" -msgstr "" +msgstr "Se actualizó la traducción al portugués (@rottenpants466)" #: data/com.github.stsdc.monitor.appdata.xml.in:75 msgid "Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "Se actualizó la traducción al holandés (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:76 msgid "Smoother animations (@DevAlien)" -msgstr "" +msgstr "Ahora se tienen animaciones más suevas (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:77 msgid "Preselect first entry so that the info panel is always open (@DevAlien)" msgstr "" +"Ahora la primera entrada se preselecciona. Así el panel de información " +"siempre estará abierto (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:78 msgid "Show CPU temperature in the Indicator" -msgstr "" +msgstr "Se muestra la temperatura del CPU en el indicador" #: data/com.github.stsdc.monitor.appdata.xml.in:85 msgid "Better System Tab" -msgstr "" +msgstr "Se mejoró la pestaña del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:87 msgid "Save last opened view (@ryonakano)" -msgstr "" +msgstr "Ahora se guarda la última vista abierta (@ryonakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:94 #: data/com.github.stsdc.monitor.appdata.xml.in:157 msgid "Update Japanese translation (Ryo Nakano)" -msgstr "" +msgstr "Se actualizó la traducción al japonés (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:95 msgid "Disable search entry, when System tab is active" msgstr "" +"Ahora se deshabilita la entrada de búsqueda, cuando la pestaña de sistema se " +"encuentra activa" #: data/com.github.stsdc.monitor.appdata.xml.in:96 msgid "Add screenshots" -msgstr "" +msgstr "Se agregaron capturas de pantalla" #: data/com.github.stsdc.monitor.appdata.xml.in:103 msgid "Add System resources tab" -msgstr "" +msgstr "Se agregó la pestaña de recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:110 msgid "Added tooltips to process state label (Ryo Nakano)" msgstr "" +"Se agregaron descripciones emergentes para la etiqueta del estado del " +"proceso (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:111 msgid "Small bugfix" -msgstr "" +msgstr "Se realizaron correcciones menores" #: data/com.github.stsdc.monitor.appdata.xml.in:118 msgid "Fix sorting arrows" -msgstr "" +msgstr "Se corrigieron las flechas de ordenamiento" #: data/com.github.stsdc.monitor.appdata.xml.in:119 #: data/com.github.stsdc.monitor.appdata.xml.in:155 #: data/com.github.stsdc.monitor.appdata.xml.in:169 msgid "Update Russian translation (camellan)" -msgstr "" +msgstr "Se actualizó la traducción al ruso (camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:120 msgid "Add Turkish translation (Harun Yasar)" -msgstr "" +msgstr "Se agregó traducción al turco (Harun Yasar)" #: data/com.github.stsdc.monitor.appdata.xml.in:121 msgid "" "Use newest version of live-chart (Laurent Callarec) ← Check his lib for " "creating charts, it's amazing!" msgstr "" +"Ahora se usa la última versión de live-chart (Laurent Callarec) ← Les " +"recomendamos revisar su biblioteca para crear gráficos. ¡Es genial!" #: data/com.github.stsdc.monitor.appdata.xml.in:128 msgid "Detailed process info in sidebar" -msgstr "" +msgstr "Se agregó información detallada de los procesos en la barra lateral" #: data/com.github.stsdc.monitor.appdata.xml.in:129 msgid "CPU frequency in tooltip (Ryo Nakano)" msgstr "" +"Se agregó la frecuencia del CPU en la descripción emergente (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:136 msgid "Bugfix (potential) of crushes and high CPU usage" -msgstr "" +msgstr "Se corrigieron (potencialmente) fallas graves y uso alto del CPU" #: data/com.github.stsdc.monitor.appdata.xml.in:137 msgid "Update German translation (Carsten Dietrich)" -msgstr "" +msgstr "Se actualizó la traducción al alemán (Carsten Dietrich)" #: data/com.github.stsdc.monitor.appdata.xml.in:144 msgid "Update Portuguese translation (Hugo Carvalho)" -msgstr "" +msgstr "Se actualizó la traducción al portugués (Hugo Carvalho)" #: data/com.github.stsdc.monitor.appdata.xml.in:145 msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "" +msgstr "Se actualizó la traducción al francés (Nathan Bonnemains and Skeudwenn)" #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" msgstr "" +"Se corrigió un error que mostraba el porcentaje de intercambio cuando no " +"estaba disponible (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:153 msgid "Update Italian translation (Mirko Brombin)" -msgstr "" +msgstr "Se actualizó la traducción al italiano (Mirko Brombin)" #: data/com.github.stsdc.monitor.appdata.xml.in:154 msgid "Show swap usage (Ryo Nakano)" -msgstr "" +msgstr "Ahora se muestra el uso de la memoria de intercambio (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:156 msgid "Code refactoring (Ryo Nakano)" -msgstr "" +msgstr "Reorganización del código (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:164 msgid "Fix contents of the window are not shown (Ryo Nakano)" msgstr "" +"Se corrigieron algunos contenidos de la ventana que no se mostraban (Ryo " +"Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:165 msgid "" "ix no row is still selected when indicator options are enabled (Ryo Nakano)" msgstr "" +"Se corrigió un problema donde no se seleccionaba ninguna fila cuando las " +"opciones de indicadores estaban activadas (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:166 msgid "" "Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " "process is selected (Ryo Nakano)" msgstr "" +"Se corrigió una falla grave cuando se hacía clic en los botones «Finalizar/" +"Terminar proceso» sin haber seleccionado un proceso (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:167 msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" msgstr "" +"Se agregaron botones para «finalizar» o «terminar» un proceso. (Evan Buss)" #: data/com.github.stsdc.monitor.appdata.xml.in:168 msgid "Change screenshot to English (Christopher Crouse)" msgstr "" +"Se cambió la captura de pantalla para que sea en inglés (Christopher Crouse)" #: data/com.github.stsdc.monitor.appdata.xml.in:170 msgid "Check if the default display is a X11 display (Hannes Schulze)" -msgstr "" +msgstr "Ahora se verifica si la pantalla está utilizando X11 (Hannes Schulze)" #: data/com.github.stsdc.monitor.appdata.xml.in:171 msgid "Update Spanish translation (Mario Rodrigo)" -msgstr "" +msgstr "Se actualizó la traducción al español (Mario Rodrigo)" #: data/com.github.stsdc.monitor.appdata.xml.in:178 msgid "Add start-in-background option to UI" msgstr "" +"Se agregó una opción en la interfaz para comenzar la aplicación en segundo " +"plano" #: data/com.github.stsdc.monitor.appdata.xml.in:185 msgid "Add start-in-background command line option" msgstr "" +"Se agregó una línea de comando para comenzar la aplicación en segundo plano" #: data/com.github.stsdc.monitor.appdata.xml.in:186 msgid "Add Italian and Portuguese translations" -msgstr "" +msgstr "Se agregaron traducciones al italiano y al portugués" #: data/com.github.stsdc.monitor.appdata.xml.in:187 msgid "Update Dutch, French and Spanish translations" -msgstr "" +msgstr "Se actualizaron las traducciones al holandés, francés y español" #: data/com.github.stsdc.monitor.appdata.xml.in:188 msgid "Fix Japanese translation" -msgstr "" +msgstr "Se corrigió la traducción al japonés" #: data/com.github.stsdc.monitor.appdata.xml.in:195 msgid "Minor bug fix" -msgstr "" +msgstr "Se realizaron correcciones menores" #: data/com.github.stsdc.monitor.appdata.xml.in:196 msgid "Make End process button red" -msgstr "" +msgstr "Se cambió el botón de finalizar proceso para que sea de color rojo" #: data/com.github.stsdc.monitor.appdata.xml.in:197 msgid "Add Japanese translation" -msgstr "" +msgstr "Se agregó traducción al japonés" #: data/com.github.stsdc.monitor.appdata.xml.in:204 msgid "Add CPU and RAM icons" -msgstr "" +msgstr "Se agregaron iconos de CPU y RAM" #: data/com.github.stsdc.monitor.appdata.xml.in:205 msgid "Fix bug, that caused hanging" -msgstr "" +msgstr "Se corrigió un error que causaba un bloqueo" #: data/com.github.stsdc.monitor.appdata.xml.in:206 msgid "Update Polish and Russian translation" -msgstr "" +msgstr "Se actualizaron las traducciones al polaco y ruso" #: data/com.github.stsdc.monitor.appdata.xml.in:213 msgid "Add Monitor indicator" -msgstr "" +msgstr "Se agregó Monitor como un indicador" #: data/com.github.stsdc.monitor.appdata.xml.in:214 msgid "Add missing extra French translations" -msgstr "" +msgstr "Se agregaron traducciones faltantes del francés" #: data/com.github.stsdc.monitor.appdata.xml.in:215 msgid "" "Fix: if icon missing for the process, icon is taken from previous process" msgstr "" +"Se corrigió que si no había un icono disponible en un proceso, tomaba el " +"icono del proceso anterior" #: data/com.github.stsdc.monitor.appdata.xml.in:216 msgid "Fix: search erases my input while I'm typing" -msgstr "" +msgstr "Se corrigió que la búsqueda borraba la entrada mientras se escribía" #: data/com.github.stsdc.monitor.appdata.xml.in:217 msgid "Fix POTFILES" -msgstr "" +msgstr "Se corrigieron los archivos POT" #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" @@ -299,7 +328,7 @@ msgstr "Monitor del sistema" #: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" -msgstr "Gestionar procesos y monitorizar el uso de recursos del sistema" +msgstr "Gestiona procesos y monitoriza el uso de recursos del sistema" #: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" From a636eb0636311e0c530fcb96a71329a2afcfd8db Mon Sep 17 00:00:00 2001 From: David M Date: Thu, 10 Oct 2024 10:27:56 +0000 Subject: [PATCH 468/486] Translated using Weblate (Catalan) Currently translated at 4.3% (3 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ca/ --- po/extra/ca.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/po/extra/ca.po b/po/extra/ca.po index b6d13b22..7079f10b 100644 --- a/po/extra/ca.po +++ b/po/extra/ca.po @@ -8,26 +8,29 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"Last-Translator: David M \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" -msgstr "" +msgstr "Gestioneu processos i superviseu els recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "" +msgstr "Mostra l'ús dels recursos del sistema, filtra i gestiona processos." #: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" From a22ea745251029e88778681acd59b0710ccc8ff8 Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Wed, 9 Oct 2024 21:34:03 +0000 Subject: [PATCH 469/486] Translated using Weblate (Hebrew) Currently translated at 1.4% (1 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/he/ --- po/extra/he.po | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/po/extra/he.po b/po/extra/he.po index c0789e35..c2bb36b5 100644 --- a/po/extra/he.po +++ b/po/extra/he.po @@ -8,18 +8,22 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " +"n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 msgid "Monitor" -msgstr "" +msgstr "צג" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" From 5f95490907392a21d13c81936bb7a7bca389b607 Mon Sep 17 00:00:00 2001 From: David M Date: Thu, 10 Oct 2024 10:27:55 +0000 Subject: [PATCH 470/486] Translated using Weblate (Catalan) Currently translated at 3.8% (4 of 103 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ca/ --- po/ca.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/ca.po b/po/ca.po index 42abc316..30e7214f 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-09 20:00+0000\n" -"Last-Translator: anonymous \n" +"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"Last-Translator: David M \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -21,11 +21,11 @@ msgstr "" #: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" -msgstr "" +msgstr "Monitor" #: src/MainWindow.vala:37 msgid "Processes" -msgstr "" +msgstr "Processos" #: src/MainWindow.vala:38 msgid "System" From 4071055ed99814755253db2f3be5624e465023cb Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Wed, 9 Oct 2024 21:34:39 +0000 Subject: [PATCH 471/486] Translated using Weblate (Hebrew) Currently translated at 13.5% (14 of 103 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/he/ --- po/he.po | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/po/he.po b/po/he.po index 44ecf5d9..2b9baf10 100644 --- a/po/he.po +++ b/po/he.po @@ -8,25 +8,29 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " +"n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 5.6.2\n" #: src/MainWindow.vala:26 src/Widgets/Headerbar/Headerbar.vala:14 msgid "Monitor" -msgstr "" +msgstr "צג" #: src/MainWindow.vala:37 msgid "Processes" -msgstr "" +msgstr "תהליכים" #: src/MainWindow.vala:38 msgid "System" -msgstr "" +msgstr "מערכת" #: src/Utils.vala:2 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:35 @@ -38,52 +42,52 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 msgid "N/A" -msgstr "" +msgstr "לא זמין" #: src/Utils.vala:76 msgid "B" -msgstr "" +msgstr "ב׳" #: src/Utils.vala:81 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" -msgstr "" +msgstr "KiB" #: src/Utils.vala:87 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" -msgstr "" +msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 #: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" -msgstr "" +msgstr "GiB" #: src/Indicator/Widgets/PopoverWidget.vala:13 msgid "Show Monitor" -msgstr "" +msgstr "הצגת צג" #: src/Indicator/Widgets/PopoverWidget.vala:16 msgid "Quit Monitor" -msgstr "" +msgstr "יציאה מהצג" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "" +msgstr "להמשיך?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" -msgstr "" +msgstr "כן" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" -msgstr "" +msgstr "לא" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" -msgstr "" +msgstr "מזהה תהליך" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" From 1fb3062cc75f429b1d0849e660540c87b58eab9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Thu, 10 Oct 2024 19:42:38 +0200 Subject: [PATCH 472/486] Remove leftovers (#386) --- .github/FUNDING.yml | 1 - README.md | 12 +- com.github.stsdc.monitor.spec | 85 -- src/Widgets/Statusbar/Statusbar.vala | 1 - vapi/libcurl.vapi | 1099 -------------------------- 5 files changed, 2 insertions(+), 1196 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100755 com.github.stsdc.monitor.spec delete mode 100644 vapi/libcurl.vapi diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 8b137891..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/README.md b/README.md index 54455b7d..e7bbc97a 100644 --- a/README.md +++ b/README.md @@ -5,16 +5,8 @@

Manage processes and monitor system resources

-

- - Release - - GitHub Workflow Status - - - -

- +[![](https://img.shields.io/github/release/stsdc/monitor.svg)]() +[![Github Workflow Status](https://github.com/stsdc/monitor/actions/workflows/ci.yml/badge.svg)]() [![Translation status](https://l10n.elementary.io/widget/desktop/monitor/svg-badge.svg)](https://l10n.elementary.io/engage/desktop/) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-processes.png) diff --git a/com.github.stsdc.monitor.spec b/com.github.stsdc.monitor.spec deleted file mode 100755 index 70c1ea92..00000000 --- a/com.github.stsdc.monitor.spec +++ /dev/null @@ -1,85 +0,0 @@ -%global srcname monitor -%global appname com.github.stsdc.monitor - -Name: com.github.stsdc.monitor -Version: 0.17.2 -Release: %autorelease -Summary: Manage processes and monitor system resources -License: GPLv3 -URL: https://github.com/stsdc/monitor - -Source: monitor.tar.gz - - -BuildRequires: meson -BuildRequires: vala -BuildRequires: gcc -BuildRequires: sassc -BuildRequires: git -BuildRequires: cmake -BuildRequires: libXNVCtrl-devel -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(gee-0.8) -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(granite) -BuildRequires: pkgconfig(gio-2.0) -BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: json-glib-devel -BuildRequires: libcurl-devel - -# libgtop2-devel -BuildRequires: pkgconfig(libgtop-2.0) - -# libwnck3-devel -BuildRequires: pkgconfig(libwnck-3.0) - -# wingpanel-devel -BuildRequires: pkgconfig(wingpanel) - -# gdk3-devel -BuildRequires: pkgconfig(gdk-x11-3.0) - -BuildRequires: libX11-devel - -# libhandy-devel -BuildRequires: pkgconfig(libhandy-1) - -BuildRequires: libudisks2-devel - -%description - -%prep -%autosetup -n %{srcname} -p1 - -%build -%meson -Dindicator-wingpanel=enabled # this will probably go away, since majority uses gnome on Fedora -%meson_build - -%install -%meson_install -%find_lang %{appname} - -%files -f %{appname}.lang -%{_bindir}/com.github.stsdc.monitor -%{_libdir}/liblivechart.so -%{_libdir}/wingpanel/libmonitor.so - -%{_libdir}/pkgconfig/livechart.pc -%{_datadir}/vala/vapi/livechart.vapi -%{_includedir}/livechart.h - -# %{_srcdir}/vapi/libxnvctrl.vapi - -%{_datadir}/applications/%{appname}.desktop -%{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml -%{_datadir}/icons/hicolor/*/apps/%{appname}.svg -%{_datadir}/metainfo/%{appname}.appdata.xml -%{_datadir}/%{appname}/database/cpu_bugs.csv -%{_datadir}/%{appname}/database/cpu_features.csv - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig - -%changelog -* Tue Oct 05 2021 meson - -- \ No newline at end of file diff --git a/src/Widgets/Statusbar/Statusbar.vala b/src/Widgets/Statusbar/Statusbar.vala index 796ea764..bdfb94b4 100644 --- a/src/Widgets/Statusbar/Statusbar.vala +++ b/src/Widgets/Statusbar/Statusbar.vala @@ -3,7 +3,6 @@ public class Monitor.Statusbar : Gtk.ActionBar { Gtk.Label memory_usage_label; Gtk.Label swap_usage_label; Gtk.Label gpu_usage_label; - Gtk.Label gpu_memory_usage_label; construct { var cpu_icon = new Gtk.Image.from_icon_name ("cpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) { diff --git a/vapi/libcurl.vapi b/vapi/libcurl.vapi deleted file mode 100644 index 0adb2607..00000000 --- a/vapi/libcurl.vapi +++ /dev/null @@ -1,1099 +0,0 @@ -/*- - * Copyright (c) 2010-2013 Giulio Paci - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -[CCode (cheader_filename = "curl/curl.h")] -namespace Curl { - [CCode (cname = "CURL", cprefix = "curl_easy_", cheader_filename = "curl/curl.h", free_function = "curl_easy_cleanup")] - [Compact] - public class EasyHandle { - [CCode (cname = "curl_easy_init")] - public EasyHandle (); - [CCode (cname = "curl_easy_cleanup")] - public void cleanup (); - [CCode (cname = "curl_easy_duphandle")] - public Curl.EasyHandle duphandle (); - [CCode (cname = "curl_easy_escape")] - public string escape (string str, int length); - [CCode (cname = "curl_easy_getinfo")] - [PrintfFormat] - public Curl.Code getinfo (Curl.Info info, ...); - [CCode (cname = "curl_easy_pause")] - public Curl.Code easy_pause (int bitmask); - [CCode (cname = "curl_easy_perform")] - public Curl.Code perform (); - [CCode (cname = "curl_easy_recv")] - public Curl.Code recv (void* buffer, size_t buflen, out size_t n); - [CCode (cname = "curl_easy_reset")] - public void reset (); - [CCode (cname = "curl_easy_send")] - public Curl.Code send (void* buffer, size_t buflen, out size_t n); - [CCode (cname = "curl_easy_setopt")] - [PrintfFormat] - public Curl.Code setopt (Curl.Option option, ...); - [CCode (cname = "curl_easy_unescape")] - public string unescape (string str, int length, out int outlength); - } - namespace Global { - [CCode (cname = "curl_free")] - public static void free (void* p); - [CCode (cname = "curl_getdate")] - public static ulong getdate (string p, ulong unused); - [CCode (cname = "curl_global_cleanup")] - public static void cleanup (); - [CCode (cname = "curl_escape")] - public static unowned string escape (string str, int length); - [CCode (cname = "curl_global_init")] - public static Curl.Code init (long flags); - [CCode (cname = "curl_global_init_mem")] - public static Curl.Code init_mem (long flags, Curl.MallocCallback m, Curl.FreeCallback f, Curl.ReallocCallback r, Curl.StrdupCallback s, Curl.CallocCallback c); - [CCode (cname = "curl_unescape")] - public static unowned string unescape (string str, int length); - [CCode (cname = "curl_strequal")] - public static int strequal (string s1, string s2); - [CCode (cname = "curl_easy_strerror")] - public static unowned string strerror (Curl.Code p1); - [CCode (cname = "curl_strnequal")] - public static int strnequal (string s1, string s2, size_t n); - [CCode (cname = "curl_version")] - public static unowned string version (); - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLM", free_function = "curl_multi_cleanup")] - [Compact] - public class MultiHandle { - [CCode (cname = "curl_multi_add_handle")] - public Curl.MultiCode add_handle (Curl.EasyHandle curl_handle); - [CCode (cname = "curl_multi_assign")] - public Curl.MultiCode multi_assign (Curl.Socket sockfd, void* sockp); - [CCode (cname = "curl_multi_cleanup")] - public Curl.MultiCode cleanup (); - [CCode (cname = "curl_multi_fdset")] - public Curl.MultiCode fdset (Posix.fd_set read_fd_set, Posix.fd_set write_fd_set, Posix.fd_set exc_fd_set, int max_fd); - [CCode (cname = "curl_multi_info_read")] - public unowned Curl.Message info_read (int msgs_in_queue); - [CCode (cname = "curl_multi_init")] - public MultiHandle(); - [CCode (cname = "curl_multi_perform")] - public Curl.MultiCode perform (int running_handles); - [CCode (cname = "curl_multi_remove_handle")] - public Curl.MultiCode remove_handle (Curl.EasyHandle curl_handle); - [CCode (cname = "curl_multi_setopt")] - public Curl.MultiCode setopt (Curl.MultiOption option); - [CCode (cname = "curl_multi_socket")] - public Curl.MultiCode socket (Curl.Socket s, int running_handles); - [CCode (cname = "curl_multi_socket_action")] - public Curl.MultiCode socket_action (Curl.Socket s, int ev_bitmask, int running_handles); - [CCode (cname = "curl_multi_socket_all")] - public Curl.MultiCode socket_all (int running_handles); - [CCode (cname = "curl_multi_strerror")] - public static unowned string strerror (Curl.MultiCode p1); - [CCode (cname = "curl_multi_timeout")] - public Curl.MultiCode timeout (long milliseconds); - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_offset_t")] - [Compact] - public class Offset {} - [CCode (cheader_filename = "curl/curl.h", cname = "CURLSH", free_function = "curl_share_cleanup")] - [Compact] - public class SharedHandle { - [CCode (cname = "curl_share_cleanup")] - public Curl.SharedCode cleanup (); - [CCode (cname = "curl_share_init")] - public SharedHandle (); - [CCode (cname = "curl_share_setopt")] - public Curl.SharedCode setopt (Curl.SharedOption option); - [CCode (cname = "curl_share_strerror")] - public static unowned string strerror (Curl.SharedCode p1); - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLMsg")] - [Compact] - public class Message { - public Curl.Msg msg; - public weak Curl.EasyHandle easy_handle; - - [CCode (cheader_filename = "curl/curl.h", cname = "union data")] - [Compact] - public struct Data - { - [CCode (cheader_filename = "curl/curl.h", cname = "whatever")] - public void* whatever; - [CCode (cheader_filename = "curl/curl.h", cname = "result")] - public Curl.Code result; - } - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_socket_t")] - [Compact] - public class Socket {} - [CCode (cheader_filename = "curl/curl.h", cname = "curl_version_info_data")] - [Compact] - public class VersionInfoData { - public Curl.Version age; - public weak string ares; - public int ares_num; - public int features; - public weak string host; - public int iconv_ver_num; - public weak string libidn; - public weak string libssh_version; - public weak string libz_version; - public weak string protocols; - public weak string ssl_version; - public long ssl_version_num; - public weak string version; - public uint version_num; - } - [CCode (cheader_filename = "curl/curl.h", cname = "struct curl_httppost", free_function = "curl_formfree")] - [Compact] - public class HTTPPost { - [CCode (cname = "curl_formadd")] - public static Curl.FormCode formadd (out HTTPPost httppost, out HTTPPost last_post); - [CCode (cname = "curl_formfree")] - public void free (); - [CCode (cname = "curl_formget")] - public int get (void* arg, Curl.FormGetCallback append); - } - [CCode (cheader_filename = "curl/curl.h", cname = "struct curl_slist", free_function = "curl_slist_free_all")] - [Compact] - public class SList { - [CCode (cname = "curl_slist_append")] - public static SList append (owned SList? p1, string p2); - [CCode (cname = "curl_slist_free_all")] - public void free_all (); - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_closepolicy", cprefix = "CURLCLOSEPOLICY_", has_type_id = false)] - public enum ClosePolicy { - NONE, - OLDEST, - LEAST_RECENTLY_USED, - LEAST_TRAFFIC, - SLOWEST, - CALLBACK, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLcode", cprefix = "CURLE_", has_type_id = false)] - public enum Code { - OK, - UNSUPPORTED_PROTOCOL, - FAILED_INIT, - URL_MALFORMAT, - NOT_BUILT_IN, - COULDNT_RESOLVE_PROXY, - COULDNT_RESOLVE_HOST, - COULDNT_CONNECT, - FTP_WEIRD_SERVER_REPLY, - REMOTE_ACCESS_DENIED, - FTP_WEIRD_PASS_REPLY, - FTP_WEIRD_PASV_REPLY, - FTP_WEIRD_227_FORMAT, - FTP_CANT_GET_HOST, - FTP_COULDNT_SET_TYPE, - PARTIAL_FILE, - FTP_COULDNT_RETR_FILE, - QUOTE_ERROR, - HTTP_RETURNED_ERROR, - WRITE_ERROR, - UPLOAD_FAILED, - READ_ERROR, - OUT_OF_MEMORY, - OPERATION_TIMEDOUT, - FTP_PORT_FAILED, - FTP_COULDNT_USE_REST, - RANGE_ERROR, - HTTP_POST_ERROR, - SSL_CONNECT_ERROR, - BAD_DOWNLOAD_RESUME, - FILE_COULDNT_READ_FILE, - LDAP_CANNOT_BIND, - LDAP_SEARCH_FAILED, - FUNCTION_NOT_FOUND, - ABORTED_BY_CALLBACK, - BAD_FUNCTION_ARGUMENT, - INTERFACE_FAILED, - TOO_MANY_REDIRECTS, - UNKNOWN_OPTION, - TELNET_OPTION_SYNTAX, - PEER_FAILED_VERIFICATION, - GOT_NOTHING, - SSL_ENGINE_NOTFOUND, - SSL_ENGINE_SETFAILED, - SEND_ERROR, - RECV_ERROR, - SSL_CERTPROBLEM, - SSL_CIPHER, - SSL_CACERT, - BAD_CONTENT_ENCODING, - LDAP_INVALID_URL, - FILESIZE_EXCEEDED, - USE_SSL_FAILED, - SEND_FAIL_REWIND, - SSL_ENGINE_INITFAILED, - LOGIN_DENIED, - TFTP_NOTFOUND, - TFTP_PERM, - REMOTE_DISK_FULL, - TFTP_ILLEGAL, - TFTP_UNKNOWNID, - REMOTE_FILE_EXISTS, - TFTP_NOSUCHUSER, - CONV_FAILED, - CONV_REQD, - SSL_CACERT_BADFILE, - REMOTE_FILE_NOT_FOUND, - SSH, - SSL_SHUTDOWN_FAILED, - AGAIN, - SSL_CRL_BADFILE, - SSL_ISSUER_ERROR, - FTP_PRET_FAILED, - RTSP_CSEQ_ERROR, - RTSP_SESSION_ERROR, - FTP_BAD_FILE_LIST, - CHUNK_FAILED, - [CCode (cname = "CURL_LAST")] - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curlfiletype", cprefix = "CURLFILETYPE_", has_type_id = false)] - public enum FileType { - FILE, - DIRECTORY, - SYMLINK, - DEVICE_BLOCK, - DEVICE_CHAR, - NAMEDPIPE, - SOCKET, - DOOR, - UNKNOWN - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLFORMcode", cprefix = "CURL_FORMADD_", has_type_id = false)] - public enum FormCode { - OK, - MEMORY, - OPTION_TWICE, - NULL, - UNKNOWN_OPTION, - INCOMPLETE, - ILLEGAL_ARRAY, - DISABLED, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLformoption", cprefix = "CURLFORM_", has_type_id = false)] - public enum FormOption { - NOTHING, - COPYNAME, - PTRNAME, - NAMELENGTH, - COPYCONTENTS, - PTRCONTENTS, - CONTENTSLENGTH, - FILECONTENT, - ARRAY, - OBSOLETE, - FILE, - BUFFER, - BUFFERPTR, - BUFFERLENGTH, - CONTENTTYPE, - CONTENTHEADER, - FILENAME, - END, - OBSOLETE2, - STREAM, - LASTENTRY - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ftpauth", cprefix = "CURLFTPAUTH_", has_type_id = false)] - public enum FtpAuth { - DEFAULT, - SSL, - TLS, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ftpccc", cprefix = "CURLFTPSSL_CCC_", has_type_id = false)] - public enum FtpCCC { - NONE, - PASSIVE, - ACTIVE, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ftpcreatedir", cprefix = "CURLFTP_CREATE_", has_type_id = false)] - public enum FtpCreateDir { - DIR_NONE, - DIR, - DIR_RETRY, - DIR_LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ftpmethod", cprefix = "CURLFTPMETHOD_", has_type_id = false)] - public enum FtpMethod { - DEFAULT, - MULTICWD, - NOCWD, - SINGLECWD, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "httpversion", cprefix = "CURL_HTTP_VERSION_", has_type_id = false)] - public enum HttpVersion { - @1_0, - @1_1, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curlioerr", cprefix = "CURLIOCMD_", has_type_id = false)] - public enum IOCmd { - NOP, - RESTARTREAD, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ftpauth", cprefix = "CURLIOE_", has_type_id = false)] - public enum IOError { - OK, - UNKNOWNCMD, - FAILRESTART, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLINFO", cprefix = "CURLINFO_", has_type_id = false)] - public enum Info { - NONE, - EFFECTIVE_URL, - RESPONSE_CODE, - TOTAL_TIME, - NAMELOOKUP_TIME, - CONNECT_TIME, - PRETRANSFER_TIME, - SIZE_UPLOAD, - SIZE_DOWNLOAD, - SPEED_DOWNLOAD, - SPEED_UPLOAD, - HEADER_SIZE, - REQUEST_SIZE, - SSL_VERIFYRESULT, - FILETIME, - CONTENT_LENGTH_DOWNLOAD, - CONTENT_LENGTH_UPLOAD, - STARTTRANSFER_TIME, - CONTENT_TYPE, - REDIRECT_TIME, - REDIRECT_COUNT, - PRIVATE, - HTTP_CONNECTCODE, - HTTPAUTH_AVAIL, - PROXYAUTH_AVAIL, - OS_ERRNO, - NUM_CONNECTS, - SSL_ENGINES, - COOKIELIST, - LASTSOCKET, - FTP_ENTRY_PATH, - REDIRECT_URL, - PRIMARY_IP, - APPCONNECT_TIME, - CERTINFO, - CONDITION_UNMET, - RTSP_SESSION_ID, - RTSP_CLIENT_CSEQ, - RTSP_SERVER_CSEQ, - RTSP_CSEQ_RECV, - PRIMARY_PORT, - LOCAL_IP, - LOCAL_PORT, - LASTONE - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_infotype", cprefix = "CURLINFO_", has_type_id = false)] - public enum InfoType { - TEXT, - HEADER_IN, - HEADER_OUT, - DATA_IN, - DATA_OUT, - SSL_DATA_IN, - SSL_DATA_OUT, - END - } - [CCode (cheader_filename = "curl/curl.h", cname = "keytype", cprefix = "CURLKHTYPE_", has_type_id = false)] - public enum KeyHostKeyType { - UNKNOWN, - RSA1, - RSA, - DSS - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_khmatch", cprefix = "CURLKHMATCH_", has_type_id = false)] - public enum KeyHostMatch { - OK, - MISMATCH, - MISSING, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_khstat", cprefix = "CURLKHSTAT_", has_type_id = false)] - public enum KeyHostStat { - FINE_ADD_TO_FILE, - FINE, - REJECT, - DEFER, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_lock_access", cprefix = "CURL_LOCK_ACCESS_", has_type_id = false)] - public enum LockAccess { - NONE, - SHARED, - SINGLE, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_lock_data", cprefix = "CURL_LOCK_DATA_", has_type_id = false)] - public enum LockData { - NONE, - SHARE, - COOKIE, - DNS, - SSL_SESSION, - CONNECT, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLMSG", cprefix = "CURLMSG_", has_type_id = false)] - public enum Msg { - NONE, - DONE, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLMcode", cprefix = "CURLM_", has_type_id = false)] - public enum MultiCode { - CALL_MULTI_PERFORM, - OK, - BAD_HANDLE, - BAD_EASY_HANDLE, - OUT_OF_MEMORY, - INTERNAL_ERROR, - BAD_SOCKET, - UNKNOWN_OPTION, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLMoption", cprefix = "CURLMOPT_", has_type_id = false)] - public enum MultiOption { - SOCKETFUNCTION, - SOCKETDATA, - PIPELINING, - TIMERFUNCTION, - TIMERDATA, - MAXCONNECTS, - LASTENTRY - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURL_NETRC_OPTION", cprefix = "CURL_NETRC_", has_type_id = false)] - public enum NetRCOption { - IGNORED, - OPTIONAL, - REQUIRED, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLoption", cprefix = "CURLOPT_", has_type_id = false)] - public enum Option { - UNIX_SOCKET_PATH, - FILE, - WRITEDATA, - URL, - PORT, - PROXY, - USERPWD, - PROXYUSERPWD, - RANGE, - INFILE, - READDATA, - ERRORBUFFER, - WRITEFUNCTION, - READFUNCTION, - TIMEOUT, - INFILESIZE, - POSTFIELDS, - REFERER, - FTPPORT, - USERAGENT, - LOW_SPEED_LIMIT, - LOW_SPEED_TIME, - RESUME_FROM, - COOKIE, - HTTPHEADER, - RTSPHEADER, - HTTPPOST, - SSLCERT, - KEYPASSWD, - CRLF, - QUOTE, - WRITEHEADER, - HEADERDATA, - COOKIEFILE, - SSLVERSION, - TIMECONDITION, - TIMEVALUE, - CUSTOMREQUEST, - STDERR, - POSTQUOTE, - WRITEINFO, - VERBOSE, - HEADER, - NOPROGRESS, - NOBODY, - FAILONERROR, - UPLOAD, - POST, - DIRLISTONLY, - APPEND, - NETRC, - FOLLOWLOCATION, - TRANSFERTEXT, - PUT, - PROGRESSFUNCTION, - PROGRESSDATA, - AUTOREFERER, - PROXYPORT, - POSTFIELDSIZE, - HTTPPROXYTUNNEL, - INTERFACE, - KRBLEVEL, - SSL_VERIFYPEER, - CAINFO, - MAXREDIRS, - FILETIME, - TELNETOPTIONS, - MAXCONNECTS, - FRESH_CONNECT, - FORBID_REUSE, - RANDOM_FILE, - EGDSOCKET, - CONNECTTIMEOUT, - HEADERFUNCTION, - HTTPGET, - SSL_VERIFYHOST, - COOKIEJAR, - SSL_CIPHER_LIST, - HTTP_VERSION, - FTP_USE_EPSV, - SSLCERTTYPE, - SSLKEY, - SSLKEYTYPE, - SSLENGINE, - SSLENGINE_DEFAULT, - DNS_CACHE_TIMEOUT, - PREQUOTE, - DEBUGFUNCTION, - DEBUGDATA, - COOKIESESSION, - CAPATH, - BUFFERSIZE, - NOSIGNAL, - SHARE, - PROXYTYPE, - ACCEPT_ENCODING, - PRIVATE, - HTTP200ALIASES, - UNRESTRICTED_AUTH, - FTP_USE_EPRT, - HTTPAUTH, - SSL_CTX_FUNCTION, - SSL_CTX_DATA, - FTP_CREATE_MISSING_DIRS, - PROXYAUTH, - FTP_RESPONSE_TIMEOUT, - IPRESOLVE, - MAXFILESIZE, - INFILESIZE_LARGE, - RESUME_FROM_LARGE, - MAXFILESIZE_LARGE, - NETRC_FILE, - USE_SSL, - POSTFIELDSIZE_LARGE, - TCP_NODELAY, - FTPSSLAUTH, - IOCTLFUNCTION, - IOCTLDATA, - FTP_ACCOUNT, - COOKIELIST, - IGNORE_CONTENT_LENGTH, - FTP_SKIP_PASV_IP, - FTP_FILEMETHOD, - LOCALPORT, - LOCALPORTRANGE, - CONNECT_ONLY, - CONV_FROM_NETWORK_FUNCTION, - CONV_TO_NETWORK_FUNCTION, - CONV_FROM_UTF8_FUNCTION, - MAX_SEND_SPEED_LARGE, - MAX_RECV_SPEED_LARGE, - FTP_ALTERNATIVE_TO_USER, - SOCKOPTFUNCTION, - SOCKOPTDATA, - SSL_SESSIONID_CACHE, - SSH_AUTH_TYPES, - SSH_PUBLIC_KEYFILE, - SSH_PRIVATE_KEYFILE, - FTP_SSL_CCC, - TIMEOUT_MS, - CONNECTTIMEOUT_MS, - HTTP_TRANSFER_DECODING, - HTTP_CONTENT_DECODING, - NEW_FILE_PERMS, - NEW_DIRECTORY_PERMS, - POSTREDIR, - SSH_HOST_PUBLIC_KEY_MD5, - OPENSOCKETFUNCTION, - OPENSOCKETDATA, - COPYPOSTFIELDS, - PROXY_TRANSFER_MODE, - SEEKFUNCTION, - SEEKDATA, - CRLFILE, - ISSUERCERT, - ADDRESS_SCOPE, - CERTINFO, - USERNAME, - PASSWORD, - PROXYUSERNAME, - PROXYPASSWORD, - NOPROXY, - TFTP_BLKSIZE, - SOCKS5_GSSAPI_SERVICE, - SOCKS5_GSSAPI_NEC, - PROTOCOLS, - REDIR_PROTOCOLS, - SSH_KNOWNHOSTS, - SSH_KEYFUNCTION, - SSH_KEYDATA, - MAIL_FROM, - MAIL_RCPT, - FTP_USE_PRET, - RTSP_REQUEST, - RTSP_SESSION_ID, - RTSP_STREAM_URI, - RTSP_TRANSPORT, - RTSP_CLIENT_CSEQ, - RTSP_SERVER_CSEQ, - INTERLEAVEDATA, - INTERLEAVEFUNCTION, - WILDCARDMATCH, - CHUNK_BGN_FUNCTION, - CHUNK_END_FUNCTION, - FNMATCH_FUNCTION, - CHUNK_DATA, - FNMATCH_DATA, - RESOLVE, - TLSAUTH_USERNAME, - TLSAUTH_PASSWORD, - TLSAUTH_TYPE, - TRANSFER_ENCODING, - CLOSESOCKETFUNCTION, - CLOSESOCKETDATA, - LASTENTRY - } - [CCode (cheader_filename = "curl/curl.h", cprefix = "CURLPROXY_", has_type_id = false)] - public enum ProxyType { - HTTP, - HTTP_1_0, - SOCKS4, - SOCKS5, - SOCKS4A, - SOCKS5_HOSTNAME - } - [CCode (cheader_filename = "curl/curl.h", cprefix = "CURL_RTSPREQ_", has_type_id = false)] - public enum RTSPRequest { - NONE, - OPTIONS, - DESCRIBE, - ANNOUNCE, - SETUP, - PLAY, - PAUSE, - TEARDOWN, - GET_PARAMETER, - SET_PARAMETER, - RECORD, - RECEIVE, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "sslversion", cprefix = "CURL_SSLVERSION_", has_type_id = false)] - public enum SSLVersion { - DEFAULT, - TLSv1, - SSLv2, - SSLv3, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLSHcode", cprefix = "CURLSHE_", has_type_id = false)] - public enum SharedCode { - OK, - BAD_OPTION, - IN_USE, - INVALID, - NOMEM, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLSHoption", cprefix = "CURLSHOPT_", has_type_id = false)] - public enum SharedOption { - NONE, - SHARE, - UNSHARE, - LOCKFUNC, - UNLOCKFUNC, - USERDATA, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curlsocktype", cprefix = "CURLSOCKTYPE_", has_type_id = false)] - public enum SocketType { - IPCXN, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURL_TLSAUTH", cprefix = "CURL_TLSAUTH_", has_type_id = false)] - public enum TLSAuth { - NONE, - SRP, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_TimeCond", cprefix = "CURL_TIMECOND_", has_type_id = false)] - public enum TimeCond { - NONE, - IFMODSINCE, - IFUNMODSINCE, - LASTMOD, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_usessl", cprefix = "CURLUSESSL_", has_type_id = false)] - public enum UseSSL { - NONE, - TRY, - CONTROL, - ALL, - LAST - } - [CCode (cheader_filename = "curl/curl.h", cname = "CURLversion", cprefix = "CURLVERSION_", has_type_id = false)] - public enum Version { - FIRST, - SECOND, - THIRD, - FOURTH, - NOW, - LAST; - [CCode (cname = "curl_version_info")] - public unowned Curl.VersionInfoData info (); - } - [CCode (cheader_filename = "curl/curl.h", cname = "curl_calloc_callback", has_target = false)] - public delegate void* CallocCallback (size_t nmemb, size_t size); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_chunk_bgn_callback", has_target = false)] - public delegate long ChunkBeginCallback (void* transfer_info, void* ptr, int remains); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_chunk_end_callback", has_target = false)] - public delegate long ChunkEndCallback (void* ptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_closesocket_callback", has_target = false)] - public delegate int CloseSocketCallback (void* clientp, Curl.Socket item); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_conv_callback", has_target = false)] - public delegate Curl.Code ConvCallback (string buffer, size_t length); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_debug_callback", has_target = false)] - public delegate int DebugCallback (Curl.EasyHandle handle, Curl.InfoType type, string data, size_t size, void* userptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_fnmatch_callback", has_target = false)] - public delegate int FNMatchCallback (void* ptr, string pattern, string str); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_formget_callback", has_target = false)] - public delegate size_t FormGetCallback (void* arg, string buf, size_t len); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_free_callback", has_target = false)] - public delegate void FreeCallback (void* ptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ioctl_callback", has_target = false)] - public delegate Curl.IOError IOCtlCallback (Curl.EasyHandle handle, int cmd, void* clientp); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_lock_function", has_target = false)] - public delegate void LockFunction (Curl.EasyHandle handle, Curl.LockData data, Curl.LockAccess locktype, void* userptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_malloc_callback", has_target = false)] - public delegate void* MallocCallback (size_t size); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_multi_timer_callback", has_target = false)] - public delegate int MultiTimerCallback (Curl.MultiHandle multi, long timeout_ms, void* userp); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_opensocket_callback", has_target = false)] - public delegate unowned Curl.Socket OpenSocketCallback (void* clientp, Curl.SocketType purpose, void* address); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_progress_callback", has_target = false)] - public delegate int ProgressCallback (void* clientp, double dltotal, double dlnow, double ultotal, double ulnow); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_read_callback", has_target = false)] - public delegate size_t ReadCallback (char* buffer, size_t size, size_t nitems, void* instream); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_realloc_callback", has_target = false)] - public delegate void* ReallocCallback (void* ptr, size_t size); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_sshkeycallback", has_target = false)] - public delegate int SSHKeyCallback (Curl.EasyHandle easy, void* knownkey, void* foundkey, Curl.KeyHostMatch p4, void* clientp); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_ssl_ctx_callback", has_target = false)] - public delegate Curl.Code SSLCtxCallback (Curl.EasyHandle curl, void* ssl_ctx, void* userptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_seek_callback", has_target = false)] - public delegate int SeekCallback (void* instream, Curl.Offset offset, int origin); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_socket_callback", has_target = false)] - public delegate int SocketCallback (Curl.EasyHandle easy, Curl.Socket s, int what, void* userp, void* socketp); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_sockopt_callback", has_target = false)] - public delegate int SockoptCallback (void* clientp, Curl.Socket curlfd, Curl.SocketType purpose); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_strdup_callback", has_target = false)] - public delegate unowned string StrdupCallback (string str); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_unlock_function", has_target = false)] - public delegate void UnlockFunction (Curl.EasyHandle handle, Curl.LockData data, void* userptr); - [CCode (cheader_filename = "curl/curl.h", cname = "curl_write_callback", has_target = false)] - public delegate size_t WriteCallback (char* buffer, size_t size, size_t nitems, void* outstream); - [CCode (cname = "CURL_WRITEFUNC_PAUSE", cheader_filename = "curl/curl.h")] - public const size_t WRITEFUNC_PAUSE; - [CCode (cname = "CURL_READFUNC_ABORT", cheader_filename = "curl/curl.h")] - public const size_t READFUNC_ABORT; - [CCode (cname = "CURL_READFUNC_PAUSE", cheader_filename = "curl/curl.h")] - public const size_t READFUNC_PAUSE; - [CCode (cname = "CURL_CHUNK_BGN_FUNC_SKIP", cheader_filename = "curl/curl.h")] - public const int CHUNK_BGN_FUNC_SKIP; - [CCode (cname = "CURL_CHUNK_END_FUNC_FAIL", cheader_filename = "curl/curl.h")] - public const int CHUNK_END_FUNC_FAIL; - [CCode (cname = "CURL_CHUNK_END_FUNC_OK", cheader_filename = "curl/curl.h")] - public const int CHUNK_END_FUNC_OK; - [CCode (cname = "CURL_CSELECT_ERR", cheader_filename = "curl/curl.h")] - public const int CSELECT_ERR; - [CCode (cname = "CURL_CSELECT_IN", cheader_filename = "curl/curl.h")] - public const int CSELECT_IN; - [CCode (cname = "CURL_CSELECT_OUT", cheader_filename = "curl/curl.h")] - public const int CSELECT_OUT; - [CCode (cname = "CURL_CURLAUTH_ANYSAFE", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_ANYSAFE; - [CCode (cname = "CURL_CURLAUTH_BASIC", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_BASIC; - [CCode (cname = "CURL_CURLAUTH_DIGEST", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_DIGEST; - [CCode (cname = "CURL_CURLAUTH_DIGEST_IE", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_DIGEST_IE; - [CCode (cname = "CURL_CURLAUTH_GSSNEGOTIATE", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_GSSNEGOTIATE; - [CCode (cname = "CURL_CURLAUTH_NONE", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_NONE; - [CCode (cname = "CURL_CURLAUTH_NTLM", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_NTLM; - [CCode (cname = "CURL_CURLAUTH_ONLY", cheader_filename = "curl/curl.h")] - public const int CURLAUTH_ONLY; - [CCode (cname = "CURL_CURLINFO_DOUBLE", cheader_filename = "curl/curl.h")] - public const int CURLINFO_DOUBLE; - [CCode (cname = "CURL_CURLINFO_LONG", cheader_filename = "curl/curl.h")] - public const int CURLINFO_LONG; - [CCode (cname = "CURL_CURLINFO_MASK", cheader_filename = "curl/curl.h")] - public const int CURLINFO_MASK; - [CCode (cname = "CURL_CURLINFO_SLIST", cheader_filename = "curl/curl.h")] - public const int CURLINFO_SLIST; - [CCode (cname = "CURL_CURLINFO_STRING", cheader_filename = "curl/curl.h")] - public const int CURLINFO_STRING; - [CCode (cname = "CURL_CURLINFO_TYPEMASK", cheader_filename = "curl/curl.h")] - public const int CURLINFO_TYPEMASK; - [CCode (cname = "CURL_CURLOPTTYPE_FUNCTIONPOINT", cheader_filename = "curl/curl.h")] - public const int CURLOPTTYPE_FUNCTIONPOINT; - [CCode (cname = "CURL_CURLOPTTYPE_LONG", cheader_filename = "curl/curl.h")] - public const int CURLOPTTYPE_LONG; - [CCode (cname = "CURL_CURLOPTTYPE_OBJECTPOINT", cheader_filename = "curl/curl.h")] - public const int CURLOPTTYPE_OBJECTPOINT; - [CCode (cname = "CURL_CURLOPTTYPE_OFF_T", cheader_filename = "curl/curl.h")] - public const int CURLOPTTYPE_OFF_T; - [CCode (cname = "CURL_CURLPAUSE_ALL", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_ALL; - [CCode (cname = "CURL_CURLPAUSE_CONT", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_CONT; - [CCode (cname = "CURL_CURLPAUSE_RECV", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_RECV; - [CCode (cname = "CURL_CURLPAUSE_RECV_CONT", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_RECV_CONT; - [CCode (cname = "CURL_CURLPAUSE_SEND", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_SEND; - [CCode (cname = "CURL_CURLPAUSE_SEND_CONT", cheader_filename = "curl/curl.h")] - public const int CURLPAUSE_SEND_CONT; - [CCode (cname = "CURL_CURLPROTO_ALL", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_ALL; - [CCode (cname = "CURL_CURLPROTO_DICT", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_DICT; - [CCode (cname = "CURL_CURLPROTO_FILE", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_FILE; - [CCode (cname = "CURL_CURLPROTO_FTP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_FTP; - [CCode (cname = "CURL_CURLPROTO_FTPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_FTPS; - [CCode (cname = "CURL_CURLPROTO_GOPHER", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_GOPHER; - [CCode (cname = "CURL_CURLPROTO_HTTP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_HTTP; - [CCode (cname = "CURL_CURLPROTO_HTTPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_HTTPS; - [CCode (cname = "CURL_CURLPROTO_IMAP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_IMAP; - [CCode (cname = "CURL_CURLPROTO_IMAPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_IMAPS; - [CCode (cname = "CURL_CURLPROTO_LDAP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_LDAP; - [CCode (cname = "CURL_CURLPROTO_LDAPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_LDAPS; - [CCode (cname = "CURL_CURLPROTO_POP3", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_POP3; - [CCode (cname = "CURL_CURLPROTO_POP3S", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_POP3S; - [CCode (cname = "CURL_CURLPROTO_RTMP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMP; - [CCode (cname = "CURL_CURLPROTO_RTMPE", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMPE; - [CCode (cname = "CURL_CURLPROTO_RTMPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMPS; - [CCode (cname = "CURL_CURLPROTO_RTMPT", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMPT; - [CCode (cname = "CURL_CURLPROTO_RTMPTE", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMPTE; - [CCode (cname = "CURL_CURLPROTO_RTMPTS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTMPTS; - [CCode (cname = "CURL_CURLPROTO_RTSP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_RTSP; - [CCode (cname = "CURL_CURLPROTO_SCP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_SCP; - [CCode (cname = "CURL_CURLPROTO_SFTP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_SFTP; - [CCode (cname = "CURL_CURLPROTO_SMTP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_SMTP; - [CCode (cname = "CURL_CURLPROTO_SMTPS", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_SMTPS; - [CCode (cname = "CURL_CURLPROTO_TELNET", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_TELNET; - [CCode (cname = "CURL_CURLPROTO_TFTP", cheader_filename = "curl/curl.h")] - public const int CURLPROTO_TFTP; - [CCode (cname = "CURL_CURLSSH_AUTH_ANY", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_ANY; - [CCode (cname = "CURL_CURLSSH_AUTH_HOST", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_HOST; - [CCode (cname = "CURL_CURLSSH_AUTH_KEYBOARD", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_KEYBOARD; - [CCode (cname = "CURL_CURLSSH_AUTH_NONE", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_NONE; - [CCode (cname = "CURL_CURLSSH_AUTH_PASSWORD", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_PASSWORD; - [CCode (cname = "CURL_CURLSSH_AUTH_PUBLICKEY", cheader_filename = "curl/curl.h")] - public const int CURLSSH_AUTH_PUBLICKEY; - [CCode (cname = "CURL_ERROR_SIZE", cheader_filename = "curl/curl.h")] - public const int ERROR_SIZE; - [CCode (cname = "CURL_FNMATCHFUNC_FAIL", cheader_filename = "curl/curl.h")] - public const int FNMATCHFUNC_FAIL; - [CCode (cname = "CURL_FNMATCHFUNC_MATCH", cheader_filename = "curl/curl.h")] - public const int FNMATCHFUNC_MATCH; - [CCode (cname = "CURL_FNMATCHFUNC_NOMATCH", cheader_filename = "curl/curl.h")] - public const int FNMATCHFUNC_NOMATCH; - [CCode (cname = "CURL_FORMAT_CURL_OFF_T", cheader_filename = "curl/curl.h")] - public const string FORMAT_CURL_OFF_T; - [CCode (cname = "CURL_FORMAT_CURL_OFF_TU", cheader_filename = "curl/curl.h")] - public const string FORMAT_CURL_OFF_TU; - [CCode (cname = "CURL_FORMAT_OFF_T", cheader_filename = "curl/curl.h")] - public const string FORMAT_OFF_T; - [CCode (cname = "CURL_GLOBAL_ALL", cheader_filename = "curl/curl.h")] - public const int GLOBAL_ALL; - [CCode (cname = "CURL_GLOBAL_DEFAULT", cheader_filename = "curl/curl.h")] - public const int GLOBAL_DEFAULT; - [CCode (cname = "CURL_GLOBAL_NOTHING", cheader_filename = "curl/curl.h")] - public const int GLOBAL_NOTHING; - [CCode (cname = "CURL_GLOBAL_SSL", cheader_filename = "curl/curl.h")] - public const int GLOBAL_SSL; - [CCode (cname = "CURL_GLOBAL_WIN32", cheader_filename = "curl/curl.h")] - public const int GLOBAL_WIN32; - [CCode (cname = "CURL_HTTPPOST_BUFFER", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_BUFFER; - [CCode (cname = "CURL_HTTPPOST_CALLBACK", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_CALLBACK; - [CCode (cname = "CURL_HTTPPOST_FILENAME", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_FILENAME; - [CCode (cname = "CURL_HTTPPOST_PTRBUFFER", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_PTRBUFFER; - [CCode (cname = "CURL_HTTPPOST_PTRCONTENTS", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_PTRCONTENTS; - [CCode (cname = "CURL_HTTPPOST_PTRNAME", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_PTRNAME; - [CCode (cname = "CURL_HTTPPOST_READFILE", cheader_filename = "curl/curl.h")] - public const int HTTPPOST_READFILE; - [CCode (cname = "CURL_IPRESOLVE_V4", cheader_filename = "curl/curl.h")] - public const int IPRESOLVE_V4; - [CCode (cname = "CURL_IPRESOLVE_V6", cheader_filename = "curl/curl.h")] - public const int IPRESOLVE_V6; - [CCode (cname = "CURL_IPRESOLVE_WHATEVER", cheader_filename = "curl/curl.h")] - public const int IPRESOLVE_WHATEVER; - [CCode (cname = "CURL_LIBCURL_COPYRIGHT", cheader_filename = "curl/curl.h")] - public const string LIBCURL_COPYRIGHT; - [CCode (cname = "CURL_LIBCURL_TIMESTAMP", cheader_filename = "curl/curl.h")] - public const string LIBCURL_TIMESTAMP; - [CCode (cname = "CURL_LIBCURL_VERSION", cheader_filename = "curl/curl.h")] - public const string LIBCURL_VERSION; - [CCode (cname = "CURL_LIBCURL_VERSION_MAJOR", cheader_filename = "curl/curl.h")] - public const int LIBCURL_VERSION_MAJOR; - [CCode (cname = "CURL_LIBCURL_VERSION_MINOR", cheader_filename = "curl/curl.h")] - public const int LIBCURL_VERSION_MINOR; - [CCode (cname = "CURL_LIBCURL_VERSION_NUM", cheader_filename = "curl/curl.h")] - public const int LIBCURL_VERSION_NUM; - [CCode (cname = "CURL_LIBCURL_VERSION_PATCH", cheader_filename = "curl/curl.h")] - public const int LIBCURL_VERSION_PATCH; - [CCode (cname = "CURL_POLL_IN", cheader_filename = "curl/curl.h")] - public const int POLL_IN; - [CCode (cname = "CURL_POLL_INOUT", cheader_filename = "curl/curl.h")] - public const int POLL_INOUT; - [CCode (cname = "CURL_POLL_NONE", cheader_filename = "curl/curl.h")] - public const int POLL_NONE; - [CCode (cname = "CURL_POLL_OUT", cheader_filename = "curl/curl.h")] - public const int POLL_OUT; - [CCode (cname = "CURL_POLL_REMOVE", cheader_filename = "curl/curl.h")] - public const int POLL_REMOVE; - [CCode (cname = "CURL_PULL_SYS_SOCKET_H", cheader_filename = "curl/curl.h")] - public const int PULL_SYS_SOCKET_H; - [CCode (cname = "CURL_PULL_SYS_TYPES_H", cheader_filename = "curl/curl.h")] - public const int PULL_SYS_TYPES_H; - [CCode (cname = "CURL_REDIR_GET_ALL", cheader_filename = "curl/curl.h")] - public const int REDIR_GET_ALL; - [CCode (cname = "CURL_REDIR_POST_301", cheader_filename = "curl/curl.h")] - public const int REDIR_POST_301; - [CCode (cname = "CURL_REDIR_POST_302", cheader_filename = "curl/curl.h")] - public const int REDIR_POST_302; - [CCode (cname = "CURL_REDIR_POST_ALL", cheader_filename = "curl/curl.h")] - public const int REDIR_POST_ALL; - [CCode (cname = "CURL_SEEKFUNC_CANTSEEK", cheader_filename = "curl/curl.h")] - public const int SEEKFUNC_CANTSEEK; - [CCode (cname = "CURL_SEEKFUNC_FAIL", cheader_filename = "curl/curl.h")] - public const int SEEKFUNC_FAIL; - [CCode (cname = "CURL_SEEKFUNC_OK", cheader_filename = "curl/curl.h")] - public const int SEEKFUNC_OK; - [CCode (cname = "CURL_SIZEOF_CURL_OFF_T", cheader_filename = "curl/curl.h")] - public const int SIZEOF_CURL_OFF_T; - [CCode (cname = "CURL_SIZEOF_CURL_SOCKLEN_T", cheader_filename = "curl/curl.h")] - public const int SIZEOF_CURL_SOCKLEN_T; - [CCode (cname = "CURL_SIZEOF_LONG", cheader_filename = "curl/curl.h")] - public const int SIZEOF_LONG; - [CCode (cname = "CURL_SOCKET_BAD", cheader_filename = "curl/curl.h")] - public const int SOCKET_BAD; - [CCode (cname = "CURL_VERSION_ASYNCHDNS", cheader_filename = "curl/curl.h")] - public const int VERSION_ASYNCHDNS; - [CCode (cname = "CURL_VERSION_CONV", cheader_filename = "curl/curl.h")] - public const int VERSION_CONV; - [CCode (cname = "CURL_VERSION_CURLDEBUG", cheader_filename = "curl/curl.h")] - public const int VERSION_CURLDEBUG; - [CCode (cname = "CURL_VERSION_DEBUG", cheader_filename = "curl/curl.h")] - public const int VERSION_DEBUG; - [CCode (cname = "CURL_VERSION_GSSNEGOTIATE", cheader_filename = "curl/curl.h")] - public const int VERSION_GSSNEGOTIATE; - [CCode (cname = "CURL_VERSION_IDN", cheader_filename = "curl/curl.h")] - public const int VERSION_IDN; - [CCode (cname = "CURL_VERSION_IPV6", cheader_filename = "curl/curl.h")] - public const int VERSION_IPV6; - [CCode (cname = "CURL_VERSION_KERBEROS4", cheader_filename = "curl/curl.h")] - public const int VERSION_KERBEROS4; - [CCode (cname = "CURL_VERSION_LARGEFILE", cheader_filename = "curl/curl.h")] - public const int VERSION_LARGEFILE; - [CCode (cname = "CURL_VERSION_LIBZ", cheader_filename = "curl/curl.h")] - public const int VERSION_LIBZ; - [CCode (cname = "CURL_VERSION_NTLM", cheader_filename = "curl/curl.h")] - public const int VERSION_NTLM; - [CCode (cname = "CURL_VERSION_SPNEGO", cheader_filename = "curl/curl.h")] - public const int VERSION_SPNEGO; - [CCode (cname = "CURL_VERSION_SSL", cheader_filename = "curl/curl.h")] - public const int VERSION_SSL; - [CCode (cname = "CURL_VERSION_SSPI", cheader_filename = "curl/curl.h")] - public const int VERSION_SSPI; - [CCode (cname = "CURL_VERSION_TLSAUTH_SRP", cheader_filename = "curl/curl.h")] - public const int VERSION_TLSAUTH_SRP; -} From c2f87c349b74224bf1874fdb502ef10994bf3956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <6031763+stsdc@users.noreply.github.com> Date: Thu, 10 Oct 2024 19:56:46 +0200 Subject: [PATCH 473/486] Remove stylesheet retrofit (#387) --- data/css.gresource.xml | 2 -- data/meson.build | 10 +--------- src/Monitor.vala | 1 - src/Services/Appearance.vala | 11 ----------- 4 files changed, 1 insertion(+), 23 deletions(-) diff --git a/data/css.gresource.xml b/data/css.gresource.xml index 630fb17b..94f5de1a 100644 --- a/data/css.gresource.xml +++ b/data/css.gresource.xml @@ -3,7 +3,5 @@ monitor-light.css monitor-dark.css - monitor-retrofit.css - \ No newline at end of file diff --git a/data/meson.build b/data/meson.build index 41133b1a..4924c47e 100644 --- a/data/meson.build +++ b/data/meson.build @@ -75,19 +75,11 @@ stylesheet_dark = custom_target( build_by_default: true ) -stylesheet_retrofit = custom_target( - 'theme-monitor-retrofit', - input : './stylesheet/monitor-retrofit.scss', - output : 'monitor-retrofit.css', - command : sass_command, - build_by_default: true -) - css_gresource = gnome.compile_resources( 'gresource_css', 'css.gresource.xml', source_dir: 'stylesheet', c_name: 'as2', - dependencies: [stylesheet_dark, stylesheet_light, stylesheet_retrofit], + dependencies: [stylesheet_dark, stylesheet_light], ) \ No newline at end of file diff --git a/src/Monitor.vala b/src/Monitor.vala index 4d2d1aad..e3fff4f0 100644 --- a/src/Monitor.vala +++ b/src/Monitor.vala @@ -75,7 +75,6 @@ namespace Monitor { }); Appearance.set_prefered_style (); - Appearance.retrofit (); // Controls the direction of the sort indicators diff --git a/src/Services/Appearance.vala b/src/Services/Appearance.vala index dda40d2d..a320ab1c 100644 --- a/src/Services/Appearance.vala +++ b/src/Services/Appearance.vala @@ -29,15 +29,4 @@ public class Monitor.Appearance : Object { } }); } - - public static void retrofit () { - if (Gtk.Settings.get_default ().gtk_theme_name.has_prefix ("io.elementary") ) { - debug ("Chewie, We are home."); - } else { - debug ("Retrofitting styles to make Monitor usable with a current theme."); - var provider = new Gtk.CssProvider (); - provider.load_from_resource ("/com/github/stsdc/monitor/monitor-retrofit.css"); - Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); - } - } } From 1281cf13822550ef0b20bda7380a50094e63952b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=83=D0=B1=D0=B8=D0=BA=20=D0=BA=D1=80=D1=83=D0=B3?= =?UTF-8?q?=D0=BB=D1=8B=D0=B9?= Date: Thu, 10 Oct 2024 17:06:05 +0000 Subject: [PATCH 474/486] Translated using Weblate (Russian) Currently translated at 100.0% (103 of 103 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ru/ --- po/ru.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index c3eb5295..b146e9b2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-09 20:00+0000\n" +"PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: кубик круглый \n" "Language-Team: Russian \n" @@ -284,11 +284,11 @@ msgstr "Температура граф. процессора" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "Включены" +msgstr "Включено" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "Отключены" +msgstr "Выключено" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" From 00ca8197755da026a2fec2d95897ac856909c7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=83=D0=B1=D0=B8=D0=BA=20=D0=BA=D1=80=D1=83=D0=B3?= =?UTF-8?q?=D0=BB=D1=8B=D0=B9?= Date: Thu, 10 Oct 2024 14:03:18 +0000 Subject: [PATCH 475/486] Translated using Weblate (Russian) Currently translated at 42.0% (29 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ru/ --- po/extra/ru.po | 53 +++++++++++++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/po/extra/ru.po b/po/extra/ru.po index d445861b..32c3b612 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-09 14:45+0000\n" +"PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: кубик круглый \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,97 +41,102 @@ msgstr "Stanisław Dac" #: data/com.github.stsdc.monitor.appdata.xml.in:33 msgid "Add info about drives (based on Dirli's code)" -msgstr "" +msgstr "Добавлена информация о накопителях (на основе кода Dirli)" #: data/com.github.stsdc.monitor.appdata.xml.in:38 msgid "Adds dark theme 🌚" -msgstr "" +msgstr "Добавлена тёмная тема 🌚" #: data/com.github.stsdc.monitor.appdata.xml.in:43 msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" msgstr "" +"Теперь использует Wingpanel v3; Новый разработчик *.deb-пакетов: Kristopher " +"Ives" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" -msgstr "" +msgstr "🐛 Должно исправить пустой индикатор. Перезагрузитесь после установки ⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" -msgstr "" +msgstr "🐛 Попытка исправить зависания интерфейса 🥶" #: data/com.github.stsdc.monitor.appdata.xml.in:55 msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "🇳🇱 Обновлён нидерландский перевод (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:56 msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "🇵🇹 Обновлён португальский перевод (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:57 msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "" +msgstr "🇷🇴 Добавлен румынский перевод (@tiberiufrat)" #: data/com.github.stsdc.monitor.appdata.xml.in:64 msgid "Display Storage usage" -msgstr "" +msgstr "Отображение использования хранилища" #: data/com.github.stsdc.monitor.appdata.xml.in:65 msgid "Update Russian translation (@camellan)" -msgstr "" +msgstr "Обновлён русский перевод (@camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:66 msgid "Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "Обновлён португальский перевод (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:67 msgid "Different colours for Upload and Download" -msgstr "" +msgstr "Разные цвета для отдачи и загрузки" #: data/com.github.stsdc.monitor.appdata.xml.in:74 #: data/com.github.stsdc.monitor.appdata.xml.in:86 msgid "Update Portuguese translation (@rottenpants466)" -msgstr "" +msgstr "Обновлён португальский перевод (@rottenpants466)" #: data/com.github.stsdc.monitor.appdata.xml.in:75 msgid "Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "Обновлён нидерландский перевод (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:76 msgid "Smoother animations (@DevAlien)" -msgstr "" +msgstr "Более плавные анимации (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:77 msgid "Preselect first entry so that the info panel is always open (@DevAlien)" msgstr "" +"Автоматическое выделение первого элемента, чтобы информационная панель " +"всегда была открыта (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:78 msgid "Show CPU temperature in the Indicator" -msgstr "" +msgstr "Отображение температуры процессора в индикаторе" #: data/com.github.stsdc.monitor.appdata.xml.in:85 msgid "Better System Tab" -msgstr "" +msgstr "Улучшена вкладка «Система»" #: data/com.github.stsdc.monitor.appdata.xml.in:87 msgid "Save last opened view (@ryonakano)" -msgstr "" +msgstr "Запоминать последнее открытое представление (@ryonakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:94 #: data/com.github.stsdc.monitor.appdata.xml.in:157 msgid "Update Japanese translation (Ryo Nakano)" -msgstr "" +msgstr "Обновлён японский перевод (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:95 msgid "Disable search entry, when System tab is active" -msgstr "" +msgstr "Отключение поля поиска, когда вкладка «Система» активна" #: data/com.github.stsdc.monitor.appdata.xml.in:96 +#, fuzzy msgid "Add screenshots" -msgstr "" +msgstr "Добавлены скриншоты" #: data/com.github.stsdc.monitor.appdata.xml.in:103 msgid "Add System resources tab" -msgstr "" +msgstr "Добавлена вкладка системных ресурсов" #: data/com.github.stsdc.monitor.appdata.xml.in:110 msgid "Added tooltips to process state label (Ryo Nakano)" From 357fc9223a8b9ca96676d6b32ab02dcb72d8f182 Mon Sep 17 00:00:00 2001 From: David M Date: Fri, 11 Oct 2024 08:45:17 +0000 Subject: [PATCH 476/486] Translated using Weblate (Catalan) Currently translated at 100.0% (69 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ca/ --- po/extra/ca.po | 133 ++++++++++++++++++++++++++++--------------------- 1 file changed, 75 insertions(+), 58 deletions(-) diff --git a/po/extra/ca.po b/po/extra/ca.po index 7079f10b..c576cfbe 100644 --- a/po/extra/ca.po +++ b/po/extra/ca.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: David M \n" "Language-Team: Catalan \n" @@ -34,274 +34,291 @@ msgstr "Mostra l'ús dels recursos del sistema, filtra i gestiona processos." #: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" -msgstr "" +msgstr "Stanisław Dac" #: data/com.github.stsdc.monitor.appdata.xml.in:33 msgid "Add info about drives (based on Dirli's code)" -msgstr "" +msgstr "Afegeix informació sobre les unitats (basat en el codi de Dirli)" #: data/com.github.stsdc.monitor.appdata.xml.in:38 msgid "Adds dark theme 🌚" -msgstr "" +msgstr "Afegeix-hi un tema fosc 🌚" #: data/com.github.stsdc.monitor.appdata.xml.in:43 msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" -msgstr "" +msgstr "Usa Wingpanel v3; Nou mantenidor de paquets *.deb: Kristopher Ives" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" msgstr "" +"🐛 Cal arreglar l'indicador buit. Si us plau, reinicieu després de la instal·" +"lació ⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" -msgstr "" +msgstr "🐛 Intenta arreglar els blocatges freqüents de la IGU 🥶" #: data/com.github.stsdc.monitor.appdata.xml.in:55 msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "🇳🇱 Actualització de la traducció neerlandesa (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:56 msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "🇵🇹 Actualització de la traducció del portuguès (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:57 msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "" +msgstr "🇷🇴 Afegeix una traducció al romanès (@tiberiufrat)" #: data/com.github.stsdc.monitor.appdata.xml.in:64 msgid "Display Storage usage" -msgstr "" +msgstr "Mostra l'ús de l'emmagatzematge" #: data/com.github.stsdc.monitor.appdata.xml.in:65 msgid "Update Russian translation (@camellan)" -msgstr "" +msgstr "Actualització de la traducció al rus (@camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:66 msgid "Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "Actualització de la traducció del portuguès (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:67 msgid "Different colours for Upload and Download" -msgstr "" +msgstr "Colors diferents per pujar i descarregar" #: data/com.github.stsdc.monitor.appdata.xml.in:74 #: data/com.github.stsdc.monitor.appdata.xml.in:86 msgid "Update Portuguese translation (@rottenpants466)" -msgstr "" +msgstr "Actualització de la traducció al portuguès (@rottenpants466)" #: data/com.github.stsdc.monitor.appdata.xml.in:75 msgid "Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "Actualització de la traducció neerlandesa (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:76 msgid "Smoother animations (@DevAlien)" -msgstr "" +msgstr "Animacions més suaus (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:77 msgid "Preselect first entry so that the info panel is always open (@DevAlien)" msgstr "" +"Preselecció de la primera entrada perquè el tauler d'informació estigui " +"sempre obert (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:78 msgid "Show CPU temperature in the Indicator" -msgstr "" +msgstr "Mostra la temperatura de la CPU a l'indicador" #: data/com.github.stsdc.monitor.appdata.xml.in:85 msgid "Better System Tab" -msgstr "" +msgstr "Pestanya del sistema millorada" #: data/com.github.stsdc.monitor.appdata.xml.in:87 msgid "Save last opened view (@ryonakano)" -msgstr "" +msgstr "Desa la darrera visualització oberta (@ryonakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:94 #: data/com.github.stsdc.monitor.appdata.xml.in:157 msgid "Update Japanese translation (Ryo Nakano)" -msgstr "" +msgstr "Actualització de la traducció al japonès (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:95 msgid "Disable search entry, when System tab is active" -msgstr "" +msgstr "Desactiva l'entrada de cerca quan la pestanya de sistema estigui activa" #: data/com.github.stsdc.monitor.appdata.xml.in:96 msgid "Add screenshots" -msgstr "" +msgstr "Afegeix captures de pantalla" #: data/com.github.stsdc.monitor.appdata.xml.in:103 msgid "Add System resources tab" -msgstr "" +msgstr "Afegeix la pestanya de recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:110 msgid "Added tooltips to process state label (Ryo Nakano)" msgstr "" +"S'han afegit consells sobre eines per processar l'etiqueta d'estat (Ryo " +"Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:111 msgid "Small bugfix" -msgstr "" +msgstr "Petita correcció d'errors" #: data/com.github.stsdc.monitor.appdata.xml.in:118 msgid "Fix sorting arrows" -msgstr "" +msgstr "Correcció de les fletxes d'ordenació" #: data/com.github.stsdc.monitor.appdata.xml.in:119 #: data/com.github.stsdc.monitor.appdata.xml.in:155 #: data/com.github.stsdc.monitor.appdata.xml.in:169 msgid "Update Russian translation (camellan)" -msgstr "" +msgstr "Actualització de la traducció al rus (camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:120 msgid "Add Turkish translation (Harun Yasar)" -msgstr "" +msgstr "Addició de la traducció al turc (Harun Yasar)" #: data/com.github.stsdc.monitor.appdata.xml.in:121 msgid "" "Use newest version of live-chart (Laurent Callarec) ← Check his lib for " "creating charts, it's amazing!" msgstr "" +"Usa la versió més recent de live-chart (Laurent Callarec) ← Consulta'n la " +"biblioteca per crear gràfics, és increïble!" #: data/com.github.stsdc.monitor.appdata.xml.in:128 msgid "Detailed process info in sidebar" -msgstr "" +msgstr "Informació detallada del procés a la barra lateral" #: data/com.github.stsdc.monitor.appdata.xml.in:129 msgid "CPU frequency in tooltip (Ryo Nakano)" -msgstr "" +msgstr "Freqüència de la CPU a la informació sobre eines (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:136 msgid "Bugfix (potential) of crushes and high CPU usage" -msgstr "" +msgstr "Correcció de fallades (potencials) i ús elevat de CPU" #: data/com.github.stsdc.monitor.appdata.xml.in:137 msgid "Update German translation (Carsten Dietrich)" -msgstr "" +msgstr "Actualització de la traducció a l'alemany (Carsten Dietrich)" #: data/com.github.stsdc.monitor.appdata.xml.in:144 msgid "Update Portuguese translation (Hugo Carvalho)" -msgstr "" +msgstr "Actualització de la traducció al portuguès (Hugo Carvalho)" #: data/com.github.stsdc.monitor.appdata.xml.in:145 msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "" +msgstr "Actualització de la traducció francesa (Nathan Bonnemains i Skeudwenn)" #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" msgstr "" +"Correcció: no es mostra el percentatge d'intercanvi quan no està disponible (" +"Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:153 msgid "Update Italian translation (Mirko Brombin)" -msgstr "" +msgstr "Actualització de la traducció a l'italià (Mirko Brombin)" #: data/com.github.stsdc.monitor.appdata.xml.in:154 msgid "Show swap usage (Ryo Nakano)" -msgstr "" +msgstr "Mostra l'ús d'intercanvi (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:156 msgid "Code refactoring (Ryo Nakano)" -msgstr "" +msgstr "Refactorització de codi (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:164 msgid "Fix contents of the window are not shown (Ryo Nakano)" -msgstr "" +msgstr "Correcció del contingut de la finestra que no es mostra (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:165 msgid "" "ix no row is still selected when indicator options are enabled (Ryo Nakano)" msgstr "" +"Correcció que encara no se selecciona cap fila quan les opcions d'indicadors " +"estan habilitades (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:166 msgid "" "Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " "process is selected (Ryo Nakano)" msgstr "" +"Correcció dels bloquejos de l'aplicació fent clic als botons Acaba / Mata el " +"procés quan no se selecciona cap procés (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:167 msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" -msgstr "" +msgstr "S'han afegit botons per matar o acabar un procés. (Evan Buss)" #: data/com.github.stsdc.monitor.appdata.xml.in:168 msgid "Change screenshot to English (Christopher Crouse)" -msgstr "" +msgstr "Canvia la captura de pantalla a l'anglès (Christopher Crouse)" #: data/com.github.stsdc.monitor.appdata.xml.in:170 msgid "Check if the default display is a X11 display (Hannes Schulze)" msgstr "" +"Comprova si la pantalla predeterminada és una pantalla X11 (Hannes Schulze)" #: data/com.github.stsdc.monitor.appdata.xml.in:171 msgid "Update Spanish translation (Mario Rodrigo)" -msgstr "" +msgstr "Actualització de la traducció a l'espanyol (Mario Rodrigo)" #: data/com.github.stsdc.monitor.appdata.xml.in:178 msgid "Add start-in-background option to UI" -msgstr "" +msgstr "Addició de l'opció d'inici en segon pla a la interfície d'usuari" #: data/com.github.stsdc.monitor.appdata.xml.in:185 msgid "Add start-in-background command line option" -msgstr "" +msgstr "Addició de l'opció de línia d'ordres d'inici en segon pla" #: data/com.github.stsdc.monitor.appdata.xml.in:186 msgid "Add Italian and Portuguese translations" -msgstr "" +msgstr "Addicions de traduccions a l'italià i al portuguès" #: data/com.github.stsdc.monitor.appdata.xml.in:187 msgid "Update Dutch, French and Spanish translations" -msgstr "" +msgstr "Actualització de les traduccions al neerlandès, francès i espanyol" #: data/com.github.stsdc.monitor.appdata.xml.in:188 msgid "Fix Japanese translation" -msgstr "" +msgstr "Correcció de la traducció al japonès" #: data/com.github.stsdc.monitor.appdata.xml.in:195 msgid "Minor bug fix" -msgstr "" +msgstr "Correcció d'errors menors" #: data/com.github.stsdc.monitor.appdata.xml.in:196 msgid "Make End process button red" -msgstr "" +msgstr "Fer vermell el botó d'acabament del procés" #: data/com.github.stsdc.monitor.appdata.xml.in:197 msgid "Add Japanese translation" -msgstr "" +msgstr "Addició de la traducció al japonès" #: data/com.github.stsdc.monitor.appdata.xml.in:204 msgid "Add CPU and RAM icons" -msgstr "" +msgstr "Addició d'icones de CPU i RAM" #: data/com.github.stsdc.monitor.appdata.xml.in:205 msgid "Fix bug, that caused hanging" -msgstr "" +msgstr "S'ha solucionat l'error que provocava la fallada" #: data/com.github.stsdc.monitor.appdata.xml.in:206 msgid "Update Polish and Russian translation" -msgstr "" +msgstr "Actualització de la traducció al polonès i rus" #: data/com.github.stsdc.monitor.appdata.xml.in:213 msgid "Add Monitor indicator" -msgstr "" +msgstr "Addició d'un indicador de monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:214 msgid "Add missing extra French translations" -msgstr "" +msgstr "Addició de les traduccions addicionals al francès que falten" #: data/com.github.stsdc.monitor.appdata.xml.in:215 msgid "" "Fix: if icon missing for the process, icon is taken from previous process" msgstr "" +"Correcció: si falta una icona per al procés, la icona es treu del procés " +"anterior" #: data/com.github.stsdc.monitor.appdata.xml.in:216 msgid "Fix: search erases my input while I'm typing" -msgstr "" +msgstr "Correcció: la cerca esborra la meva entrada mentre escric" #: data/com.github.stsdc.monitor.appdata.xml.in:217 msgid "Fix POTFILES" -msgstr "" +msgstr "Correcció dels POTFILES" #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" -msgstr "" +msgstr "Monitor del sistema" #: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" -msgstr "" +msgstr "Gestioneu processos i superviseu l'ús dels recursos del sistema" #: data/com.github.stsdc.monitor.desktop.in:12 msgid "System monitor;System usage;Task manager;" -msgstr "" +msgstr "Monitor del sistema; Ús del sistema; Gestor de tasques;" From c0572ed92f1e9acc192ed754eb0f3d500dfea49b Mon Sep 17 00:00:00 2001 From: David M Date: Thu, 10 Oct 2024 10:49:11 +0000 Subject: [PATCH 477/486] Translated using Weblate (Catalan) Currently translated at 100.0% (103 of 103 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ca/ --- po/ca.po | 199 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 100 insertions(+), 99 deletions(-) diff --git a/po/ca.po b/po/ca.po index 30e7214f..3199450e 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: David M \n" "Language-Team: Catalan \n" @@ -41,137 +41,138 @@ msgstr "Sistema" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:34 #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:35 msgid "N/A" -msgstr "" +msgstr "N/A" #: src/Utils.vala:76 msgid "B" -msgstr "" +msgstr "B" #: src/Utils.vala:81 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:117 msgid "KiB" -msgstr "" +msgstr "KiB" #: src/Utils.vala:87 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:122 msgid "MiB" -msgstr "" +msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 #: src/Widgets/Statusbar/Statusbar.vala:94 msgid "GiB" -msgstr "" +msgstr "GiB" #: src/Indicator/Widgets/PopoverWidget.vala:13 msgid "Show Monitor" -msgstr "" +msgstr "Mostra el monitor" #: src/Indicator/Widgets/PopoverWidget.vala:16 msgid "Quit Monitor" -msgstr "" +msgstr "Surt del monitor" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:20 msgid "Are you sure you want to do this?" -msgstr "" +msgstr "Segur que voleu fer això?" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:23 msgid "Yes" -msgstr "" +msgstr "Sí" #: src/Views/ProcessView/ProcessInfoView/Preventor.vala:27 msgid "No" -msgstr "" +msgstr "No" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:42 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:61 msgid "PID" -msgstr "" +msgstr "PID" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:43 msgid "NI" -msgstr "" +msgstr "NI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:44 msgid "PRI" -msgstr "" +msgstr "PRI" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:45 msgid "THR" -msgstr "" +msgstr "THR" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:113 msgid "The app is waiting in an uninterruptible disk sleep" -msgstr "" +msgstr "L'aplicació espera en una suspensió de disc ininterrompuda" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:115 msgid "Idle kernel thread" -msgstr "" +msgstr "Fil del nucli inactiu" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:117 msgid "The process is running or runnable (on run queue)" -msgstr "" +msgstr "El procés s'executa o es pot executar (a la cua d'execució)" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:119 msgid "" "The process is in an interruptible sleep; waiting for an event to complete" msgstr "" +"El procés està en un son interrompible; s'espera que acabi un esdeveniment" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:121 msgid "The process is stopped by a job control signal" -msgstr "" +msgstr "El procés s'atura amb un senyal de control de la tasca" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:123 msgid "The process is stopped stopped by a debugger during the tracing" -msgstr "" +msgstr "Un depurador atura el procés durant el seguiment" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoHeader.vala:125 msgid "The app is terminated but not reaped by its parent" -msgstr "" +msgstr "L'aplicació s'acaba però no la recull el pare" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:18 msgid "Opened files" -msgstr "" +msgstr "Fitxers oberts" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:22 msgid "Characters" -msgstr "" +msgstr "Caràcters" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:27 msgid "System calls" -msgstr "" +msgstr "Crides del sistema" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "" +msgstr "Llegit / Escrit" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" -msgstr "" +msgstr "Escriptura cancel·lada" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" -msgstr "" +msgstr "Acaba el procés" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" -msgstr "" +msgstr "Acaba el procés seleccionat" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" -msgstr "" +msgstr "Mata el procés" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" -msgstr "" +msgstr "Mata el procés seleccionat" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "" +msgstr "Confirmeu la mort del procés?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "" +msgstr "Confirmeu l'acabament del procés?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -179,116 +180,116 @@ msgstr "" #. setup name column #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" -msgstr "" +msgstr "Nom del procés" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 #: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" -msgstr "" +msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 #: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" -msgstr "" +msgstr "Memòria" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" -msgstr "" +msgstr "CPU: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format msgid "RAM: %.1f%%" -msgstr "" +msgstr "RAM: %.1f%%" #. status: "Spinning", #. header: "General Preferences", #: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" -msgstr "" +msgstr "General" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" -msgstr "" +msgstr "Inicia en segon pla:" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" -msgstr "" +msgstr "Dibuixa línies suaus al gràfic de la CPU (requereix reinici):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 msgid "Update every (requires restart):" -msgstr "" +msgstr "Actualitza cada (cal reiniciar):" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" -msgstr "" +msgstr "1 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" -msgstr "" +msgstr "2 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" -msgstr "" +msgstr "3 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" -msgstr "" +msgstr "4 s" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" -msgstr "" +msgstr "5 s" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" -msgstr "" +msgstr "Mostra l'indicador al plafó lateral" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 msgid "Indicator" -msgstr "" +msgstr "Indicador" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 msgid "Display CPU percentage" -msgstr "" +msgstr "Mostra el percentatge de la CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 msgid "Display CPU frequency" -msgstr "" +msgstr "Mostra la freqüència de la CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 msgid "Display CPU temperature" -msgstr "" +msgstr "Mostra la temperatura de la CPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" -msgstr "" +msgstr "Mostra percentatge de la RAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "Mostra la càrrega de la xarxa" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "Mostra la baixada de la xarxa" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "" +msgstr "Mostra el percentatge de la GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "" +msgstr "Mostra el percentatge de la VRAM" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "" +msgstr "Mostra la temperatura de la GPU" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "" +msgstr "Habilitat" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" @@ -296,11 +297,11 @@ msgstr "Inhabilitat" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" -msgstr "" +msgstr "Freqüència" #: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" -msgstr "" +msgstr "Temperatura" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -311,160 +312,160 @@ msgstr "" #: src/Views/SystemView/SystemCPUView.vala:80 #: src/Views/SystemView/SystemGPUView.vala:79 msgid "℃" -msgstr "" +msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 #: src/Widgets/Statusbar/Statusbar.vala:83 msgid "GHz" -msgstr "" +msgstr "GHz" #: src/Views/SystemView/SystemCPUView.vala:153 msgid "THREADS" -msgstr "" +msgstr "FILS" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "Característiques" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" -msgstr "" +msgstr "Errors" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" -msgstr "" +msgstr "Model:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "Família:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" -msgstr "" +msgstr "Versió del microcodi:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" -msgstr "" +msgstr "Bogomips:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:58 msgid "L1 Instruction cache: " -msgstr "" +msgstr "Memòria cau d'instruccions L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:62 msgid "L1 Data cache: " -msgstr "" +msgstr "Memòria cau de dades L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:66 msgid "L1 cache: " -msgstr "" +msgstr "Mmemòria cau L1: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:69 msgid "L2 Cache size: " -msgstr "" +msgstr "Mida de la memòria cau L2: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:72 msgid "L3 Cache size: " -msgstr "" +msgstr "Mida de la memòria cau L3: " #: src/Views/SystemView/SystemCPUInfoPopover.vala:75 msgid "Address sizes: " -msgstr "" +msgstr "Mides de l'adreça: " #: src/Views/SystemView/SystemMemoryView.vala:5 msgid "Buffered" -msgstr "" +msgstr "A la memòria intermèdia" #: src/Views/SystemView/SystemMemoryView.vala:6 msgid "Cached" -msgstr "" +msgstr "A la cau" #: src/Views/SystemView/SystemMemoryView.vala:7 msgid "Locked" -msgstr "" +msgstr "Blocat" #: src/Views/SystemView/SystemMemoryView.vala:8 msgid "Total" -msgstr "" +msgstr "Total" #: src/Views/SystemView/SystemMemoryView.vala:9 msgid "Used" -msgstr "" +msgstr "Usat" #: src/Views/SystemView/SystemMemoryView.vala:10 msgid "Shared" -msgstr "" +msgstr "Compartit" #: src/Views/SystemView/SystemNetworkView.vala:18 msgid "Network" -msgstr "" +msgstr "Xarxa" #: src/Views/SystemView/SystemNetworkView.vala:20 msgid "DOWN" -msgstr "" +msgstr "AVALL" #: src/Views/SystemView/SystemNetworkView.vala:24 msgid "UP" -msgstr "" +msgstr "AMUNT" #: src/Views/SystemView/SystemStorageView.vala:20 msgid "Storage" -msgstr "" +msgstr "Emmagatzematge" #: src/Views/SystemView/SystemStorageView.vala:22 msgid "WRITE" -msgstr "" +msgstr "ESCRIPTURA" #: src/Views/SystemView/SystemStorageView.vala:26 msgid "READ" -msgstr "" +msgstr "LECTURA" #: src/Views/SystemView/SystemStorageView.vala:92 msgid "Not mounted" -msgstr "" +msgstr "Sense muntar" #: src/Views/SystemView/SystemGPUView.vala:12 msgid "VRAM" -msgstr "" +msgstr "VRAM" #: src/Views/SystemView/SystemGPUView.vala:16 msgid "TEMPERATURE" -msgstr "" +msgstr "TEMPERATURA" #: src/Widgets/Headerbar/Headerbar.vala:22 msgid "Settings" -msgstr "" +msgstr "Paràmetres" #: src/Widgets/Headerbar/Search.vala:12 msgid "Search Process" -msgstr "" +msgstr "Cerca un procés" #: src/Widgets/Headerbar/Search.vala:13 msgid "Type process name or PID to search" -msgstr "" +msgstr "Escriviu el nom o el PID del procés per cercar-lo" #: src/Widgets/Statusbar/Statusbar.vala:18 msgid "Swap" -msgstr "" +msgstr "Intercanvi" #: src/Widgets/Statusbar/Statusbar.vala:22 msgid "GPU" -msgstr "" +msgstr "GPU" #: src/Widgets/Statusbar/Statusbar.vala:25 #: src/Widgets/Statusbar/Statusbar.vala:31 #: src/Widgets/Statusbar/Statusbar.vala:38 #: src/Widgets/Statusbar/Statusbar.vala:45 msgid "Calculating…" -msgstr "" +msgstr "Es calcula…" #: src/Widgets/Statusbar/Statusbar.vala:52 msgid "🇺🇦" -msgstr "" +msgstr "🇺🇦" #: src/Widgets/Statusbar/Statusbar.vala:53 msgid "Check on Github" -msgstr "" +msgstr "Vegeu-ho al Github" #: src/Widgets/WidgetResource/WidgetResource.vala:11 msgid "UTILIZATION" -msgstr "" +msgstr "ÚS" From 307a2e78b9faf6e3eb0ab309d24c8bd93c28d5e2 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Oct 2024 01:29:13 +0900 Subject: [PATCH 478/486] Add .editorconfig (#388) --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..677477fc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig +root = true + +# elementary defaults +[*] +charset = utf-8 +end_of_line = lf +indent_size = tab +indent_style = space +insert_final_newline = true +max_line_length = 80 +tab_width = 4 + +# Markup files +[{*.html,*.xml,*.xml.in,*.yml}] +tab_width = 2 From 258fcb1773ac2f771df46652d39d6f593928f55f Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Fri, 11 Oct 2024 14:29:50 +0000 Subject: [PATCH 479/486] Translated using Weblate (Hebrew) Currently translated at 44.9% (31 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/he/ --- po/extra/he.po | 62 +++++++++++++++++++++++++------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/po/extra/he.po b/po/extra/he.po index c2bb36b5..c22081ae 100644 --- a/po/extra/he.po +++ b/po/extra/he.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"PO-Revision-Date: 2024-10-11 19:06+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -27,11 +27,11 @@ msgstr "צג" #: data/com.github.stsdc.monitor.appdata.xml.in:8 msgid "Manage processes and monitor system resources" -msgstr "" +msgstr "ניהול תהליכים ומעקב אחר משאבי מערכת" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "" +msgstr "הצגת ניצולת משאבי המערכת, סינון וניהול תהליכים." #: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" @@ -39,11 +39,11 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:33 msgid "Add info about drives (based on Dirli's code)" -msgstr "" +msgstr "הוספת מידע על כוניים (לפי הקוד של Dirli)" #: data/com.github.stsdc.monitor.appdata.xml.in:38 msgid "Adds dark theme 🌚" -msgstr "" +msgstr "נוספה ערכת עיצוב כהה 🌚" #: data/com.github.stsdc.monitor.appdata.xml.in:43 msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" @@ -59,44 +59,44 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:55 msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "🇳🇱 עדכון התרגום להולנדית (‎@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:56 msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "🇵🇹 עדכון התרגום לפורטוגלית (‎@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:57 msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "" +msgstr "🇷🇴 הוספת תרגום לרומנית (‎@tiberiufrat)" #: data/com.github.stsdc.monitor.appdata.xml.in:64 msgid "Display Storage usage" -msgstr "" +msgstr "הצגת ניצולת האחסון" #: data/com.github.stsdc.monitor.appdata.xml.in:65 msgid "Update Russian translation (@camellan)" -msgstr "" +msgstr "עדכון התרגום לרוסית (‎@camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:66 msgid "Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "עדכון התרגום לפורטוגלית (‎@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:67 msgid "Different colours for Upload and Download" -msgstr "" +msgstr "צבעים שונים להעלאה ולהורדה" #: data/com.github.stsdc.monitor.appdata.xml.in:74 #: data/com.github.stsdc.monitor.appdata.xml.in:86 msgid "Update Portuguese translation (@rottenpants466)" -msgstr "" +msgstr "עדכון התרגום לפורטוגלית (‎@rottenpants466)" #: data/com.github.stsdc.monitor.appdata.xml.in:75 msgid "Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "עדכון התרגום להולנדית (‎@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:76 msgid "Smoother animations (@DevAlien)" -msgstr "" +msgstr "הנפשות חלקות יותר (‎@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:77 msgid "Preselect first entry so that the info panel is always open (@DevAlien)" @@ -108,7 +108,7 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:85 msgid "Better System Tab" -msgstr "" +msgstr "לשונית מערכת משופרת" #: data/com.github.stsdc.monitor.appdata.xml.in:87 msgid "Save last opened view (@ryonakano)" @@ -129,7 +129,7 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:103 msgid "Add System resources tab" -msgstr "" +msgstr "הוספת לשונית משאבי מערכת" #: data/com.github.stsdc.monitor.appdata.xml.in:110 msgid "Added tooltips to process state label (Ryo Nakano)" @@ -137,21 +137,21 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:111 msgid "Small bugfix" -msgstr "" +msgstr "תיקוני תקלות קטנות" #: data/com.github.stsdc.monitor.appdata.xml.in:118 msgid "Fix sorting arrows" -msgstr "" +msgstr "חיצי המיון תוקנו" #: data/com.github.stsdc.monitor.appdata.xml.in:119 #: data/com.github.stsdc.monitor.appdata.xml.in:155 #: data/com.github.stsdc.monitor.appdata.xml.in:169 msgid "Update Russian translation (camellan)" -msgstr "" +msgstr "עדכון התרגום לרוסית (camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:120 msgid "Add Turkish translation (Harun Yasar)" -msgstr "" +msgstr "הוספת התרגום לטורקית (Harun Yasar)" #: data/com.github.stsdc.monitor.appdata.xml.in:121 msgid "" @@ -173,15 +173,15 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:137 msgid "Update German translation (Carsten Dietrich)" -msgstr "" +msgstr "עדכון התרגום לגרמנית (Carsten Dietrich)" #: data/com.github.stsdc.monitor.appdata.xml.in:144 msgid "Update Portuguese translation (Hugo Carvalho)" -msgstr "" +msgstr "עדכון התרגום לפורטוגלית (Hugo Carvalho)" #: data/com.github.stsdc.monitor.appdata.xml.in:145 msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "" +msgstr "עדכון התרגום לצרפתית (Nathan Bonnemains ו־Skeudwenn)" #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" @@ -189,11 +189,11 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:153 msgid "Update Italian translation (Mirko Brombin)" -msgstr "" +msgstr "עדכון התרגום לאיטלקית (Mirko Brombin)" #: data/com.github.stsdc.monitor.appdata.xml.in:154 msgid "Show swap usage (Ryo Nakano)" -msgstr "" +msgstr "הצגת ניצולת שטח החלפה (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:156 msgid "Code refactoring (Ryo Nakano)" @@ -248,11 +248,11 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:188 msgid "Fix Japanese translation" -msgstr "" +msgstr "תיקון התרגום ליפנית" #: data/com.github.stsdc.monitor.appdata.xml.in:195 msgid "Minor bug fix" -msgstr "" +msgstr "תיקון תקלה קטנה" #: data/com.github.stsdc.monitor.appdata.xml.in:196 msgid "Make End process button red" @@ -260,11 +260,11 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:197 msgid "Add Japanese translation" -msgstr "" +msgstr "הוספת תרגום ליפנית" #: data/com.github.stsdc.monitor.appdata.xml.in:204 msgid "Add CPU and RAM icons" -msgstr "" +msgstr "הוספת סמלי מעבד וזיכרון" #: data/com.github.stsdc.monitor.appdata.xml.in:205 msgid "Fix bug, that caused hanging" @@ -297,7 +297,7 @@ msgstr "" #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" -msgstr "" +msgstr "צג מערכת" #: data/com.github.stsdc.monitor.desktop.in:5 msgid "Manage processes and monitor resource usage of the system" From 872ca26707c95f00bb04064e6ce9ca2c927fa5ea Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Fri, 11 Oct 2024 14:32:10 +0000 Subject: [PATCH 480/486] Translated using Weblate (Hebrew) Currently translated at 52.4% (54 of 103 strings) Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/he/ --- po/he.po | 82 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/po/he.po b/po/he.po index 2b9baf10..409ac5d1 100644 --- a/po/he.po +++ b/po/he.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2024-10-10 10:29+0000\n" +"PO-Revision-Date: 2024-10-11 19:06+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -144,35 +144,35 @@ msgstr "" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:32 msgid "Read/Written" -msgstr "" +msgstr "נקרא/נכתב" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoIOStats.vala:37 msgid "Cancelled write" -msgstr "" +msgstr "כתיבה בוטלה" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:90 msgid "End Process" -msgstr "" +msgstr "סגירת תהליך" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:92 msgid "End selected process" -msgstr "" +msgstr "סגירת התהליך הנבחר" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:96 msgid "Kill Process" -msgstr "" +msgstr "חיסול תהליך" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:97 msgid "Kill selected process" -msgstr "" +msgstr "חיסול התהליך הנבחר" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:107 msgid "Confirm kill of the process?" -msgstr "" +msgstr "לחסל את התהליך?" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoView.vala:114 msgid "Confirm end of the process?" -msgstr "" +msgstr "לאשר את סגירת התהליך?" #. *INDENT-OFF* #. vala-lint=space-before-paren, @@ -180,39 +180,39 @@ msgstr "" #. setup name column #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:19 msgid "Process Name" -msgstr "" +msgstr "שם התהליך" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 #: src/Widgets/Statusbar/Statusbar.vala:10 msgid "CPU" -msgstr "" +msgstr "מעבד" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 #: src/Widgets/Statusbar/Statusbar.vala:14 msgid "Memory" -msgstr "" +msgstr "זיכרון" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:50 #, c-format msgid "CPU: %.1f%%" -msgstr "" +msgstr "מעבד: %.1f%%" #: src/Views/ProcessView/ProcessInfoView/ProcessInfoCPURAM.vala:51 #, c-format msgid "RAM: %.1f%%" -msgstr "" +msgstr "זיכרון: %.1f%%" #. status: "Spinning", #. header: "General Preferences", #: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" -msgstr "" +msgstr "כללי" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 msgid "Start in background:" -msgstr "" +msgstr "התחלה ברקע:" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 msgid "Draw smooth lines on CPU chart (requires restart):" @@ -224,84 +224,84 @@ msgstr "" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 msgid "1s" -msgstr "" +msgstr "שנ׳" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 msgid "2s" -msgstr "" +msgstr "2 שנ׳" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 msgid "3s" -msgstr "" +msgstr "3 שנ׳" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 msgid "4s" -msgstr "" +msgstr "4 שנ׳" #: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 msgid "5s" -msgstr "" +msgstr "5 שנ׳" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:12 msgid "Show indicator in Wingpanel" -msgstr "" +msgstr "הצגת מחוון ב־" #. header: "Simple Pages", #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:15 msgid "Indicator" -msgstr "" +msgstr "מחוון" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:23 msgid "Display CPU percentage" -msgstr "" +msgstr "הצגת אחוזי מעבד" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:37 msgid "Display CPU frequency" -msgstr "" +msgstr "הצגת תדירות מעבד" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:50 msgid "Display CPU temperature" -msgstr "" +msgstr "הצגת טמפרטורת מעבד" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:62 msgid "Display RAM percentage" -msgstr "" +msgstr "הצגת אחוזי זיכרון" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:74 msgid "Display network upload" -msgstr "" +msgstr "הצגת העלאה דרך הרשת" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:86 msgid "Display network download" -msgstr "" +msgstr "הצגת הורדה דרך הרשת" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:98 msgid "Display GPU percentage" -msgstr "" +msgstr "הצגת אחוזי מעבד גרפי" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:110 msgid "Display VRAM percentage" -msgstr "" +msgstr "הצגת אחוזי זיכרון וירטואלי" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:122 msgid "Display GPU temperature" -msgstr "" +msgstr "הצגת טמפרטורת מעבד גרפי" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:188 msgid "Enabled" -msgstr "" +msgstr "מופעל" #: src/Views/PreferencesView/PreferencesIndicatorPage.vala:193 msgid "Disabled" -msgstr "" +msgstr "כבוי" #: src/Views/SystemView/SystemCPUView.vala:17 msgid "Frequency" -msgstr "" +msgstr "תדירות" #: src/Views/SystemView/SystemCPUView.vala:21 msgid "Temperature" -msgstr "" +msgstr "טמפרטורה" #. int temperature_index = 0; #. foreach (var temperature in cpu.paths_temperatures.values) { @@ -325,23 +325,23 @@ msgstr "" #: src/Views/SystemView/SystemCPUInfoPopover.vala:22 msgid "Features" -msgstr "" +msgstr "יכולות" #: src/Views/SystemView/SystemCPUInfoPopover.vala:23 msgid "Bugs" -msgstr "" +msgstr "תקלות" #: src/Views/SystemView/SystemCPUInfoPopover.vala:51 msgid "Model:" -msgstr "" +msgstr "דגם:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:52 msgid "Family:" -msgstr "" +msgstr "משפחה:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:53 msgid "Microcode ver.:" -msgstr "" +msgstr "גרסת מיקרוקוד:" #: src/Views/SystemView/SystemCPUInfoPopover.vala:54 msgid "Bogomips:" From 1882f5c6cf885509f21187aaea647ee1cb2bf739 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Oct 2024 10:08:42 +0900 Subject: [PATCH 481/486] PreferencesView: Use Setitngs.bind to lessen scope of variables --- .../PreferencesGeneralPage.vala | 34 ++++++++++++------- .../PreferencesView/PreferencesView.vala | 12 ------- 2 files changed, 21 insertions(+), 25 deletions(-) diff --git a/src/Views/PreferencesView/PreferencesGeneralPage.vala b/src/Views/PreferencesView/PreferencesGeneralPage.vala index 97f8d37b..29a045b7 100644 --- a/src/Views/PreferencesView/PreferencesGeneralPage.vala +++ b/src/Views/PreferencesView/PreferencesGeneralPage.vala @@ -5,9 +5,6 @@ */ public class Monitor.PreferencesGeneralPage : Granite.SettingsPage { - public Gtk.Switch background_switch; - public Gtk.Switch enable_smooth_lines_switch; - private Gtk.Adjustment update_time_adjustment; public PreferencesGeneralPage () { @@ -26,8 +23,7 @@ var background_label = new Gtk.Label (_("Start in background:")); background_label.halign = Gtk.Align.START; - background_switch = new Gtk.Switch (); - background_switch.state = MonitorApp.settings.get_boolean ("background-state"); + var background_switch = new Gtk.Switch (); background_switch.halign = Gtk.Align.END; background_switch.hexpand = true; @@ -35,8 +31,7 @@ var enable_smooth_lines_label = new Gtk.Label (_("Draw smooth lines on CPU chart (requires restart):")); enable_smooth_lines_label.halign = Gtk.Align.START; - enable_smooth_lines_switch = new Gtk.Switch (); - enable_smooth_lines_switch.state = MonitorApp.settings.get_boolean ("smooth-lines-state"); + var enable_smooth_lines_switch = new Gtk.Switch (); enable_smooth_lines_switch.halign = Gtk.Align.END; enable_smooth_lines_switch.hexpand = true; @@ -69,13 +64,26 @@ add (content_area); - background_switch.notify["active"].connect (() => { - MonitorApp.settings.set_boolean ("background-state", background_switch.state); - }); + MonitorApp.settings.bind ("background-state", background_switch, "state", DEFAULT); - enable_smooth_lines_switch.notify["active"].connect (() => { - MonitorApp.settings.set_boolean ("smooth-lines-state", enable_smooth_lines_switch.state); - }); + // Allow changing the background preference only when the indicator is enabled + MonitorApp.settings.bind ("indicator-state", background_switch, "sensitive", GET); + + // Disable the background preference when the indicator is enabled + MonitorApp.settings.bind_with_mapping ( + "indicator-state", background_switch, "state", GET, + (switch_state, settings_state, user_data) => { + bool state = settings_state.get_boolean (); + if (!state) { + switch_state.set_boolean (false); + } + + return true; + }, + (SettingsBindSetMappingShared) null, null, null + ); + + MonitorApp.settings.bind ("smooth-lines-state", enable_smooth_lines_switch, "state", DEFAULT); update_time_adjustment.value_changed.connect (() => { MonitorApp.settings.set_int ("update-time", (int) update_time_adjustment.get_value ()); diff --git a/src/Views/PreferencesView/PreferencesView.vala b/src/Views/PreferencesView/PreferencesView.vala index bfe1b7bc..82c777e0 100644 --- a/src/Views/PreferencesView/PreferencesView.vala +++ b/src/Views/PreferencesView/PreferencesView.vala @@ -8,10 +8,6 @@ private PreferencesIndicatorPage indicator_page = new PreferencesIndicatorPage (); construct { - set_background_switch_state (); - general_page.background_switch.notify["active"].connect (() => set_background_switch_state ()); - indicator_page.status_switch.notify["active"].connect (() => set_background_switch_state ()); - height_request = 300; width_request = 500; set_position (135); @@ -27,12 +23,4 @@ pack1 (settings_sidebar, true, false); pack2 (stack, true, false); } - - private void set_background_switch_state () { - general_page.background_switch.sensitive = indicator_page.status_switch.active; - - if (!indicator_page.status_switch.active) { - general_page.background_switch.state = false; - } - } } From 4b10fdfeaf29572d459845585589e8cc57506720 Mon Sep 17 00:00:00 2001 From: Ihor Hordiichuk Date: Sat, 12 Oct 2024 00:58:58 +0000 Subject: [PATCH 482/486] Translated using Weblate (Ukrainian) Currently translated at 100.0% (69 of 69 strings) Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/uk/ --- po/extra/uk.po | 133 ++++++++++++++++++++++++++++--------------------- 1 file changed, 75 insertions(+), 58 deletions(-) diff --git a/po/extra/uk.po b/po/extra/uk.po index dcd3a8fa..269cac0d 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -8,16 +8,17 @@ msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 20:00+0000\n" -"PO-Revision-Date: 2021-07-08 02:51+0300\n" +"PO-Revision-Date: 2024-10-12 11:06+0000\n" "Last-Translator: Ihor Hordiichuk \n" -"Language-Team: none\n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" #: data/com.github.stsdc.monitor.appdata.xml.in:7 #: data/com.github.stsdc.monitor.desktop.in:3 @@ -40,261 +41,277 @@ msgstr "Stanisław Dac" #: data/com.github.stsdc.monitor.appdata.xml.in:33 msgid "Add info about drives (based on Dirli's code)" -msgstr "" +msgstr "Додано інформацію про драйвери (на основі коду від Dirli)" #: data/com.github.stsdc.monitor.appdata.xml.in:38 msgid "Adds dark theme 🌚" -msgstr "" +msgstr "Додано темну тему 🌚" #: data/com.github.stsdc.monitor.appdata.xml.in:43 msgid "Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives" msgstr "" +"Використовує Wingpanel v3; Новий супровідник пакунків *.deb: Kristopher Ives" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" msgstr "" +"🐛 Повинно виправити порожній індикатор. Перезавантажтеся після встановлення " +"⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" -msgstr "" +msgstr "🐛 Спроба виправити часті зависання графічного інтерфейсу 🥶" #: data/com.github.stsdc.monitor.appdata.xml.in:55 msgid "🇳🇱 Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "🇳🇱 Оновлення перекладу нідерландською мовою (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:56 msgid "🇵🇹 Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "🇵🇹 Оновлення перекладу португальською мовою (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:57 msgid "🇷🇴 Add Romanian translation (@tiberiufrat)" -msgstr "" +msgstr "🇷🇴 Додано переклад румунською мовою (@tiberiufrat)" #: data/com.github.stsdc.monitor.appdata.xml.in:64 msgid "Display Storage usage" -msgstr "" +msgstr "Показ використання пам'яті" #: data/com.github.stsdc.monitor.appdata.xml.in:65 msgid "Update Russian translation (@camellan)" -msgstr "" +msgstr "Оновлення перекладу російською мовою (@camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:66 msgid "Update Portuguese translation (@hugok79)" -msgstr "" +msgstr "Оновлення перекладу португальською мовою (@hugok79)" #: data/com.github.stsdc.monitor.appdata.xml.in:67 msgid "Different colours for Upload and Download" -msgstr "" +msgstr "Різні кольори для завантаження та вивантаження" #: data/com.github.stsdc.monitor.appdata.xml.in:74 #: data/com.github.stsdc.monitor.appdata.xml.in:86 msgid "Update Portuguese translation (@rottenpants466)" -msgstr "" +msgstr "Оновлення перекладу португальською мовою (@rottenpants466)" #: data/com.github.stsdc.monitor.appdata.xml.in:75 msgid "Update Dutch translation (@Vistaus)" -msgstr "" +msgstr "Оновлення перекладу нідерландською мовою (@Vistaus)" #: data/com.github.stsdc.monitor.appdata.xml.in:76 msgid "Smoother animations (@DevAlien)" -msgstr "" +msgstr "Плавніша анімація (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:77 msgid "Preselect first entry so that the info panel is always open (@DevAlien)" msgstr "" +"Попередній вибір першого запису, щоб інформаційна панель завжди була " +"відкрита (@DevAlien)" #: data/com.github.stsdc.monitor.appdata.xml.in:78 msgid "Show CPU temperature in the Indicator" -msgstr "" +msgstr "Показ температури процесора в Індикаторі" #: data/com.github.stsdc.monitor.appdata.xml.in:85 msgid "Better System Tab" -msgstr "" +msgstr "Покращена вкладка Система" #: data/com.github.stsdc.monitor.appdata.xml.in:87 msgid "Save last opened view (@ryonakano)" -msgstr "" +msgstr "Збереження останнього відкритого подання (@ryonakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:94 #: data/com.github.stsdc.monitor.appdata.xml.in:157 msgid "Update Japanese translation (Ryo Nakano)" -msgstr "" +msgstr "Оновлення перекладу японською мовою (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:95 msgid "Disable search entry, when System tab is active" -msgstr "" +msgstr "Вимкнення пошуку, коли активна вкладка Система" #: data/com.github.stsdc.monitor.appdata.xml.in:96 msgid "Add screenshots" -msgstr "" +msgstr "Додано знімки екрана" #: data/com.github.stsdc.monitor.appdata.xml.in:103 msgid "Add System resources tab" -msgstr "" +msgstr "Додано вкладку Системні ресурси" #: data/com.github.stsdc.monitor.appdata.xml.in:110 msgid "Added tooltips to process state label (Ryo Nakano)" -msgstr "" +msgstr "Додано підказки для обробки мітки стану (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:111 msgid "Small bugfix" -msgstr "" +msgstr "Незначні виправлення" #: data/com.github.stsdc.monitor.appdata.xml.in:118 msgid "Fix sorting arrows" -msgstr "" +msgstr "Виправлено стрілки сортування" #: data/com.github.stsdc.monitor.appdata.xml.in:119 #: data/com.github.stsdc.monitor.appdata.xml.in:155 #: data/com.github.stsdc.monitor.appdata.xml.in:169 msgid "Update Russian translation (camellan)" -msgstr "" +msgstr "Оновлено переклад російською мовою (camellan)" #: data/com.github.stsdc.monitor.appdata.xml.in:120 msgid "Add Turkish translation (Harun Yasar)" -msgstr "" +msgstr "Оновлено переклад турецькою мовою (Harun Yasar)" #: data/com.github.stsdc.monitor.appdata.xml.in:121 msgid "" "Use newest version of live-chart (Laurent Callarec) ← Check his lib for " "creating charts, it's amazing!" msgstr "" +"Використання найновішої версії live-chart (Laurent Callarec) ← Перевірка " +"його бібліотеки для створення графіків, вона дивовижна!" #: data/com.github.stsdc.monitor.appdata.xml.in:128 msgid "Detailed process info in sidebar" -msgstr "" +msgstr "Детальна інформація про процес на бічній панелі" #: data/com.github.stsdc.monitor.appdata.xml.in:129 msgid "CPU frequency in tooltip (Ryo Nakano)" -msgstr "" +msgstr "Частота процесора у підказці (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:136 msgid "Bugfix (potential) of crushes and high CPU usage" msgstr "" +"Виправлення (потенційних) помилок, пов'язаних з перевантаженням та високим " +"завантаженням процесора" #: data/com.github.stsdc.monitor.appdata.xml.in:137 msgid "Update German translation (Carsten Dietrich)" -msgstr "" +msgstr "Оновлено переклад німецькою мовою (Carsten Dietrich)" #: data/com.github.stsdc.monitor.appdata.xml.in:144 msgid "Update Portuguese translation (Hugo Carvalho)" -msgstr "" +msgstr "Оновлено переклад португальською мовою (Hugo Carvalho)" #: data/com.github.stsdc.monitor.appdata.xml.in:145 msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "" +msgstr "Оновлено переклад французькою мовою (Nathan Bonnemains і Skeudwenn)" #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" msgstr "" +"Виправлено: Не показувати відсоток swap, коли він недоступний (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:153 msgid "Update Italian translation (Mirko Brombin)" -msgstr "" +msgstr "Оновлено переклад італійською мовою (Mirko Brombin)" #: data/com.github.stsdc.monitor.appdata.xml.in:154 msgid "Show swap usage (Ryo Nakano)" -msgstr "" +msgstr "Показ використання swap (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:156 msgid "Code refactoring (Ryo Nakano)" -msgstr "" +msgstr "Упорядкування коду (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:164 msgid "Fix contents of the window are not shown (Ryo Nakano)" -msgstr "" +msgstr "Виправлено помилку, коли вміст вікна не показується (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:165 msgid "" "ix no row is still selected when indicator options are enabled (Ryo Nakano)" msgstr "" +"Виправлено, що жоден рядок не вибрано, коли опції індикатора увімкнено (Ryo " +"Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:166 msgid "" "Fix the app crashes by clicking the \"End/Kill Process\" buttons when no " "process is selected (Ryo Nakano)" msgstr "" +"Усунено збої у застосунку під час натискання кнопок «Завершити/Вбити процес»" +", коли не вибрано жодного процесу (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:167 msgid "Added buttons to either \"kill\" or \"end\" a process. (Evan Buss)" -msgstr "" +msgstr "Додано кнопки «вбити» або «завершити» процес. (Evan Buss)" #: data/com.github.stsdc.monitor.appdata.xml.in:168 msgid "Change screenshot to English (Christopher Crouse)" -msgstr "" +msgstr "Змінено знімок екрана англійською мовою (Christopher Crouse)" #: data/com.github.stsdc.monitor.appdata.xml.in:170 msgid "Check if the default display is a X11 display (Hannes Schulze)" -msgstr "" +msgstr "Перевірка, чи усталено використовується X11 (Hannes Schulze)" #: data/com.github.stsdc.monitor.appdata.xml.in:171 msgid "Update Spanish translation (Mario Rodrigo)" -msgstr "" +msgstr "Оновлено переклад іспанською мовою (Mario Rodrigo)" #: data/com.github.stsdc.monitor.appdata.xml.in:178 msgid "Add start-in-background option to UI" -msgstr "" +msgstr "Додано опцію запуску у фоновому режимі до інтерфейсу користувача" #: data/com.github.stsdc.monitor.appdata.xml.in:185 msgid "Add start-in-background command line option" -msgstr "" +msgstr "Додано параметр командного рядка запуску у фоновому режимі" #: data/com.github.stsdc.monitor.appdata.xml.in:186 msgid "Add Italian and Portuguese translations" -msgstr "" +msgstr "Додано переклад італійською та португальською мовами" #: data/com.github.stsdc.monitor.appdata.xml.in:187 msgid "Update Dutch, French and Spanish translations" -msgstr "" +msgstr "Оновлено переклад нідерландською, французькою та іспанською мовами" #: data/com.github.stsdc.monitor.appdata.xml.in:188 msgid "Fix Japanese translation" -msgstr "" +msgstr "Виправлено переклад японською мовою" #: data/com.github.stsdc.monitor.appdata.xml.in:195 msgid "Minor bug fix" -msgstr "" +msgstr "Усунено незначні вади" #: data/com.github.stsdc.monitor.appdata.xml.in:196 msgid "Make End process button red" -msgstr "" +msgstr "Кнопка «Завершити процес» стала червоною" #: data/com.github.stsdc.monitor.appdata.xml.in:197 msgid "Add Japanese translation" -msgstr "" +msgstr "Додано переклад японською мовою" #: data/com.github.stsdc.monitor.appdata.xml.in:204 msgid "Add CPU and RAM icons" -msgstr "" +msgstr "Додано піктограми ЦП і RAM" #: data/com.github.stsdc.monitor.appdata.xml.in:205 msgid "Fix bug, that caused hanging" -msgstr "" +msgstr "Виправлено помилку, що призводила до зависання" #: data/com.github.stsdc.monitor.appdata.xml.in:206 msgid "Update Polish and Russian translation" -msgstr "" +msgstr "Оновлено переклад польською та російською мовами" #: data/com.github.stsdc.monitor.appdata.xml.in:213 msgid "Add Monitor indicator" -msgstr "" +msgstr "Додано індикатор Monitor" #: data/com.github.stsdc.monitor.appdata.xml.in:214 msgid "Add missing extra French translations" -msgstr "" +msgstr "Додано відсутні переклади опису французькою мовою" #: data/com.github.stsdc.monitor.appdata.xml.in:215 msgid "" "Fix: if icon missing for the process, icon is taken from previous process" msgstr "" +"Виправлено: якщо для процесу відсутня піктограма, вона береться з " +"попереднього процесу" #: data/com.github.stsdc.monitor.appdata.xml.in:216 msgid "Fix: search erases my input while I'm typing" -msgstr "" +msgstr "Виправлено: пошук стирає мої дані під час введення" #: data/com.github.stsdc.monitor.appdata.xml.in:217 msgid "Fix POTFILES" -msgstr "" +msgstr "Виправлено POTFILES" #: data/com.github.stsdc.monitor.desktop.in:4 msgid "System Monitor" From b243ba99fedd648af7cd70f1c99e7e0505a2913b Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Oct 2024 10:47:26 +0900 Subject: [PATCH 483/486] PreferencesGeneralPage: Coding style and GTK 4 prep --- .../PreferencesGeneralPage.vala | 53 ++++++++++--------- 1 file changed, 28 insertions(+), 25 deletions(-) diff --git a/src/Views/PreferencesView/PreferencesGeneralPage.vala b/src/Views/PreferencesView/PreferencesGeneralPage.vala index 29a045b7..6223d142 100644 --- a/src/Views/PreferencesView/PreferencesGeneralPage.vala +++ b/src/Views/PreferencesView/PreferencesGeneralPage.vala @@ -4,41 +4,41 @@ * SPDX-License-Identifier: LGPL-3.0-or-later */ - public class Monitor.PreferencesGeneralPage : Granite.SettingsPage { +public class Monitor.PreferencesGeneralPage : Granite.SettingsPage { private Gtk.Adjustment update_time_adjustment; public PreferencesGeneralPage () { - - var icon = new Gtk.Image.from_icon_name ("preferences-system", Gtk.IconSize.DND); - Object ( - display_widget: icon, - // status: "Spinning", - // header: "General Preferences", + display_widget: new Gtk.Image.from_icon_name ("preferences-system", Gtk.IconSize.DND), title: _("General") ); } construct { - var background_label = new Gtk.Label (_("Start in background:")); - background_label.halign = Gtk.Align.START; + var background_label = new Gtk.Label (_("Start in background:")) { + halign = Gtk.Align.START + }; - var background_switch = new Gtk.Switch (); - background_switch.halign = Gtk.Align.END; - background_switch.hexpand = true; + var background_switch = new Gtk.Switch () { + halign = Gtk.Align.END, + hexpand = true + }; + var enable_smooth_lines_label = new Gtk.Label (_("Draw smooth lines on CPU chart (requires restart):")) { + halign = Gtk.Align.START + }; - var enable_smooth_lines_label = new Gtk.Label (_("Draw smooth lines on CPU chart (requires restart):")); - enable_smooth_lines_label.halign = Gtk.Align.START; + var enable_smooth_lines_switch = new Gtk.Switch () { + halign = Gtk.Align.END, + hexpand = true + }; - var enable_smooth_lines_switch = new Gtk.Switch (); - enable_smooth_lines_switch.halign = Gtk.Align.END; - enable_smooth_lines_switch.hexpand = true; + var update_time_label = new Gtk.Label (_("Update every (requires restart):")) { + halign = Gtk.Align.START + }; - var update_time_label = new Gtk.Label (_("Update every (requires restart):")); - update_time_label.halign = Gtk.Align.START; update_time_adjustment = new Gtk.Adjustment (MonitorApp.settings.get_int ("update-time"), 1, 5, 1.0, 1, 0); - Gtk.Scale update_time_scale = new Gtk.Scale (Gtk.Orientation.HORIZONTAL, update_time_adjustment) { + var update_time_scale = new Gtk.Scale (Gtk.Orientation.HORIZONTAL, update_time_adjustment) { halign = Gtk.Align.FILL, hexpand = true, draw_value = false, @@ -51,10 +51,14 @@ update_time_scale.add_mark (4.0, Gtk.PositionType.BOTTOM, _("4s")); update_time_scale.add_mark (5.0, Gtk.PositionType.BOTTOM, _("5s")); - var content_area = new Gtk.Grid (); - content_area.column_spacing = 12; - content_area.row_spacing = 12; - content_area.margin = 12; + var content_area = new Gtk.Grid () { + column_spacing = 12, + row_spacing = 12, + margin_start = 12, + margin_end = 12, + margin_top = 12, + margin_bottom = 12 + }; content_area.attach (background_label, 0, 1, 1, 1); content_area.attach (background_switch, 1, 1, 1, 1); content_area.attach (enable_smooth_lines_label, 0, 2, 1, 1); @@ -88,6 +92,5 @@ update_time_adjustment.value_changed.connect (() => { MonitorApp.settings.set_int ("update-time", (int) update_time_adjustment.get_value ()); }); - } } From 3fcee57baef29726a84e0ad36183eb4f5c4bcd6e Mon Sep 17 00:00:00 2001 From: elementaryBot Date: Sat, 12 Oct 2024 14:36:11 +0000 Subject: [PATCH 484/486] Update translation template --- po/com.github.stsdc.monitor.pot | 46 ++++++++++++++++----------------- po/extra/extra.pot | 2 +- 2 files changed, 23 insertions(+), 25 deletions(-) diff --git a/po/com.github.stsdc.monitor.pot b/po/com.github.stsdc.monitor.pot index 0bf54358..f32c2fd4 100644 --- a/po/com.github.stsdc.monitor.pot +++ b/po/com.github.stsdc.monitor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,7 +57,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -180,13 +180,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -200,42 +200,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -312,7 +310,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -440,26 +438,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 9977e432..c3fcf44b 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From afda25df4508fd9190b860afd7a2c9dad91b9d1a Mon Sep 17 00:00:00 2001 From: Weblate Date: Sat, 12 Oct 2024 14:36:18 +0000 Subject: [PATCH 485/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor Translate-URL: https://l10n.elementary.io/projects/desktop/monitor/ --- po/aa.po | 46 ++++++++++++++++++++++------------------------ po/ab.po | 46 ++++++++++++++++++++++------------------------ po/ace.po | 46 ++++++++++++++++++++++------------------------ po/ae.po | 46 ++++++++++++++++++++++------------------------ po/af.po | 46 ++++++++++++++++++++++------------------------ po/ak.po | 46 ++++++++++++++++++++++------------------------ po/am.po | 46 ++++++++++++++++++++++------------------------ po/an.po | 46 ++++++++++++++++++++++------------------------ po/ar.po | 46 ++++++++++++++++++++++------------------------ po/as.po | 46 ++++++++++++++++++++++------------------------ po/ast.po | 46 ++++++++++++++++++++++------------------------ po/av.po | 46 ++++++++++++++++++++++------------------------ po/ay.po | 46 ++++++++++++++++++++++------------------------ po/az.po | 46 ++++++++++++++++++++++------------------------ po/ba.po | 46 ++++++++++++++++++++++------------------------ po/be.po | 46 ++++++++++++++++++++++------------------------ po/bg.po | 46 ++++++++++++++++++++++------------------------ po/bh.po | 46 ++++++++++++++++++++++------------------------ po/bi.po | 46 ++++++++++++++++++++++------------------------ po/bm.po | 46 ++++++++++++++++++++++------------------------ po/bn.po | 46 ++++++++++++++++++++++------------------------ po/bo.po | 46 ++++++++++++++++++++++------------------------ po/br.po | 46 ++++++++++++++++++++++------------------------ po/bs.po | 46 ++++++++++++++++++++++------------------------ po/ca.po | 46 ++++++++++++++++++++++------------------------ po/ca@valencia.po | 46 ++++++++++++++++++++++------------------------ po/ce.po | 46 ++++++++++++++++++++++------------------------ po/ch.po | 46 ++++++++++++++++++++++------------------------ po/ckb.po | 46 ++++++++++++++++++++++------------------------ po/co.po | 46 ++++++++++++++++++++++------------------------ po/cr.po | 46 ++++++++++++++++++++++------------------------ po/cs.po | 46 ++++++++++++++++++++++------------------------ po/cu.po | 46 ++++++++++++++++++++++------------------------ po/cv.po | 46 ++++++++++++++++++++++------------------------ po/cy.po | 46 ++++++++++++++++++++++------------------------ po/da.po | 46 ++++++++++++++++++++++------------------------ po/de.po | 46 ++++++++++++++++++++++------------------------ po/dv.po | 46 ++++++++++++++++++++++------------------------ po/dz.po | 46 ++++++++++++++++++++++------------------------ po/ee.po | 46 ++++++++++++++++++++++------------------------ po/el.po | 46 ++++++++++++++++++++++------------------------ po/en_AU.po | 46 ++++++++++++++++++++++------------------------ po/en_CA.po | 46 ++++++++++++++++++++++------------------------ po/en_GB.po | 46 ++++++++++++++++++++++------------------------ po/en_ZA.po | 46 ++++++++++++++++++++++------------------------ po/eo.po | 46 ++++++++++++++++++++++------------------------ po/es.po | 46 ++++++++++++++++++++++------------------------ po/et.po | 46 ++++++++++++++++++++++------------------------ po/eu.po | 46 ++++++++++++++++++++++------------------------ po/fa.po | 46 ++++++++++++++++++++++------------------------ po/ff.po | 46 ++++++++++++++++++++++------------------------ po/fi.po | 46 ++++++++++++++++++++++------------------------ po/fil.po | 46 ++++++++++++++++++++++------------------------ po/fj.po | 46 ++++++++++++++++++++++------------------------ po/fo.po | 46 ++++++++++++++++++++++------------------------ po/fr.po | 46 ++++++++++++++++++++++------------------------ po/fr_CA.po | 46 ++++++++++++++++++++++------------------------ po/frp.po | 46 ++++++++++++++++++++++------------------------ po/fy.po | 46 ++++++++++++++++++++++------------------------ po/ga.po | 46 ++++++++++++++++++++++------------------------ po/gd.po | 46 ++++++++++++++++++++++------------------------ po/gl.po | 46 ++++++++++++++++++++++------------------------ po/gn.po | 46 ++++++++++++++++++++++------------------------ po/gu.po | 46 ++++++++++++++++++++++------------------------ po/gv.po | 46 ++++++++++++++++++++++------------------------ po/ha.po | 46 ++++++++++++++++++++++------------------------ po/he.po | 46 ++++++++++++++++++++++------------------------ po/hi.po | 46 ++++++++++++++++++++++------------------------ po/ho.po | 46 ++++++++++++++++++++++------------------------ po/hr.po | 46 ++++++++++++++++++++++------------------------ po/ht.po | 46 ++++++++++++++++++++++------------------------ po/hu.po | 46 ++++++++++++++++++++++------------------------ po/hy.po | 46 ++++++++++++++++++++++------------------------ po/hz.po | 46 ++++++++++++++++++++++------------------------ po/ia.po | 46 ++++++++++++++++++++++------------------------ po/id.po | 46 ++++++++++++++++++++++------------------------ po/id_ID.po | 46 ++++++++++++++++++++++------------------------ po/ie.po | 46 ++++++++++++++++++++++------------------------ po/ig.po | 46 ++++++++++++++++++++++------------------------ po/ii.po | 46 ++++++++++++++++++++++------------------------ po/ik.po | 46 ++++++++++++++++++++++------------------------ po/io.po | 46 ++++++++++++++++++++++------------------------ po/is.po | 46 ++++++++++++++++++++++------------------------ po/it.po | 46 ++++++++++++++++++++++------------------------ po/iu.po | 46 ++++++++++++++++++++++------------------------ po/ja.po | 46 ++++++++++++++++++++++------------------------ po/jv.po | 46 ++++++++++++++++++++++------------------------ po/ka.po | 46 ++++++++++++++++++++++------------------------ po/kg.po | 46 ++++++++++++++++++++++------------------------ po/ki.po | 46 ++++++++++++++++++++++------------------------ po/kj.po | 46 ++++++++++++++++++++++------------------------ po/kk.po | 46 ++++++++++++++++++++++------------------------ po/kl.po | 46 ++++++++++++++++++++++------------------------ po/km.po | 46 ++++++++++++++++++++++------------------------ po/kn.po | 46 ++++++++++++++++++++++------------------------ po/ko.po | 46 ++++++++++++++++++++++------------------------ po/kr.po | 46 ++++++++++++++++++++++------------------------ po/ks.po | 46 ++++++++++++++++++++++------------------------ po/ku.po | 46 ++++++++++++++++++++++------------------------ po/kv.po | 46 ++++++++++++++++++++++------------------------ po/kw.po | 46 ++++++++++++++++++++++------------------------ po/ky.po | 46 ++++++++++++++++++++++------------------------ po/la.po | 46 ++++++++++++++++++++++------------------------ po/lb.po | 46 ++++++++++++++++++++++------------------------ po/lg.po | 46 ++++++++++++++++++++++------------------------ po/li.po | 46 ++++++++++++++++++++++------------------------ po/ln.po | 46 ++++++++++++++++++++++------------------------ po/lo.po | 46 ++++++++++++++++++++++------------------------ po/lt.po | 46 ++++++++++++++++++++++------------------------ po/lu.po | 46 ++++++++++++++++++++++------------------------ po/lv.po | 46 ++++++++++++++++++++++------------------------ po/mg.po | 46 ++++++++++++++++++++++------------------------ po/mh.po | 46 ++++++++++++++++++++++------------------------ po/mi.po | 46 ++++++++++++++++++++++------------------------ po/mk.po | 46 ++++++++++++++++++++++------------------------ po/ml.po | 46 ++++++++++++++++++++++------------------------ po/mn.po | 46 ++++++++++++++++++++++------------------------ po/mo.po | 46 ++++++++++++++++++++++------------------------ po/mr.po | 46 ++++++++++++++++++++++------------------------ po/ms.po | 46 ++++++++++++++++++++++------------------------ po/mt.po | 46 ++++++++++++++++++++++------------------------ po/my.po | 46 ++++++++++++++++++++++------------------------ po/na.po | 46 ++++++++++++++++++++++------------------------ po/nb.po | 46 ++++++++++++++++++++++------------------------ po/nd.po | 46 ++++++++++++++++++++++------------------------ po/ne.po | 46 ++++++++++++++++++++++------------------------ po/ng.po | 46 ++++++++++++++++++++++------------------------ po/nl.po | 46 ++++++++++++++++++++++------------------------ po/nn.po | 46 ++++++++++++++++++++++------------------------ po/no.po | 46 ++++++++++++++++++++++------------------------ po/nr.po | 46 ++++++++++++++++++++++------------------------ po/nv.po | 46 ++++++++++++++++++++++------------------------ po/ny.po | 46 ++++++++++++++++++++++------------------------ po/oc.po | 46 ++++++++++++++++++++++------------------------ po/oj.po | 46 ++++++++++++++++++++++------------------------ po/om.po | 46 ++++++++++++++++++++++------------------------ po/or.po | 46 ++++++++++++++++++++++------------------------ po/os.po | 46 ++++++++++++++++++++++------------------------ po/pa.po | 46 ++++++++++++++++++++++------------------------ po/pap.po | 46 ++++++++++++++++++++++------------------------ po/pi.po | 46 ++++++++++++++++++++++------------------------ po/pl.po | 46 ++++++++++++++++++++++------------------------ po/ps.po | 46 ++++++++++++++++++++++------------------------ po/pt.po | 46 ++++++++++++++++++++++------------------------ po/pt_BR.po | 46 ++++++++++++++++++++++------------------------ po/qu.po | 46 ++++++++++++++++++++++------------------------ po/rm.po | 46 ++++++++++++++++++++++------------------------ po/rn.po | 46 ++++++++++++++++++++++------------------------ po/ro.po | 46 ++++++++++++++++++++++------------------------ po/ru.po | 46 ++++++++++++++++++++++------------------------ po/rue.po | 46 ++++++++++++++++++++++------------------------ po/rw.po | 46 ++++++++++++++++++++++------------------------ po/sa.po | 46 ++++++++++++++++++++++------------------------ po/sc.po | 46 ++++++++++++++++++++++------------------------ po/sd.po | 46 ++++++++++++++++++++++------------------------ po/se.po | 46 ++++++++++++++++++++++------------------------ po/sg.po | 46 ++++++++++++++++++++++------------------------ po/si.po | 46 ++++++++++++++++++++++------------------------ po/sk.po | 46 ++++++++++++++++++++++------------------------ po/sl.po | 46 ++++++++++++++++++++++------------------------ po/sm.po | 46 ++++++++++++++++++++++------------------------ po/sma.po | 46 ++++++++++++++++++++++------------------------ po/sn.po | 46 ++++++++++++++++++++++------------------------ po/so.po | 46 ++++++++++++++++++++++------------------------ po/sq.po | 46 ++++++++++++++++++++++------------------------ po/sr.po | 46 ++++++++++++++++++++++------------------------ po/sr@latin.po | 46 ++++++++++++++++++++++------------------------ po/ss.po | 46 ++++++++++++++++++++++------------------------ po/st.po | 46 ++++++++++++++++++++++------------------------ po/su.po | 46 ++++++++++++++++++++++------------------------ po/sv.po | 46 ++++++++++++++++++++++------------------------ po/sw.po | 46 ++++++++++++++++++++++------------------------ po/szl.po | 46 ++++++++++++++++++++++------------------------ po/ta.po | 46 ++++++++++++++++++++++------------------------ po/te.po | 46 ++++++++++++++++++++++------------------------ po/tg.po | 46 ++++++++++++++++++++++------------------------ po/th.po | 46 ++++++++++++++++++++++------------------------ po/ti.po | 46 ++++++++++++++++++++++------------------------ po/tk.po | 46 ++++++++++++++++++++++------------------------ po/tl.po | 46 ++++++++++++++++++++++------------------------ po/tn.po | 46 ++++++++++++++++++++++------------------------ po/to.po | 46 ++++++++++++++++++++++------------------------ po/tr.po | 46 ++++++++++++++++++++++------------------------ po/ts.po | 46 ++++++++++++++++++++++------------------------ po/tt.po | 46 ++++++++++++++++++++++------------------------ po/tw.po | 46 ++++++++++++++++++++++------------------------ po/ty.po | 46 ++++++++++++++++++++++------------------------ po/ug.po | 46 ++++++++++++++++++++++------------------------ po/uk.po | 46 ++++++++++++++++++++++------------------------ po/ur.po | 46 ++++++++++++++++++++++------------------------ po/uz.po | 46 ++++++++++++++++++++++------------------------ po/ve.po | 46 ++++++++++++++++++++++------------------------ po/vi.po | 46 ++++++++++++++++++++++------------------------ po/vo.po | 46 ++++++++++++++++++++++------------------------ po/wa.po | 46 ++++++++++++++++++++++------------------------ po/wo.po | 46 ++++++++++++++++++++++------------------------ po/xh.po | 46 ++++++++++++++++++++++------------------------ po/yi.po | 46 ++++++++++++++++++++++------------------------ po/yo.po | 46 ++++++++++++++++++++++------------------------ po/za.po | 46 ++++++++++++++++++++++------------------------ po/zh.po | 46 ++++++++++++++++++++++------------------------ po/zh_HK.po | 46 ++++++++++++++++++++++------------------------ po/zh_Hans.po | 46 ++++++++++++++++++++++------------------------ po/zh_Hant.po | 46 ++++++++++++++++++++++------------------------ po/zu.po | 46 ++++++++++++++++++++++------------------------ 205 files changed, 4510 insertions(+), 4920 deletions(-) diff --git a/po/aa.po b/po/aa.po index 660531f6..dbe990e7 100644 --- a/po/aa.po +++ b/po/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ab.po b/po/ab.po index 89fd0d9a..62ec549a 100644 --- a/po/ab.po +++ b/po/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ace.po b/po/ace.po index e7763250..35d0e77d 100644 --- a/po/ace.po +++ b/po/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ae.po b/po/ae.po index 94ef92fa..bf177d89 100644 --- a/po/ae.po +++ b/po/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/af.po b/po/af.po index bf91a105..e44f1118 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ak.po b/po/ak.po index 6b0303a4..67f25776 100644 --- a/po/ak.po +++ b/po/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/am.po b/po/am.po index 2d0f85cb..2cef7b24 100644 --- a/po/am.po +++ b/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/an.po b/po/an.po index 9ca51efd..1d9a7cd8 100644 --- a/po/an.po +++ b/po/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ar.po b/po/ar.po index 42b9ffe5..94f9a656 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Arabic \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish (Central) \n" "Language-Team: Czech \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: English (Australia) \n" "Language-Team: English (Canada) \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Finnish \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hungarian \n" "Language-Team: Indonesian \n" "Language-Team: Italian \n" "Language-Team: none\n" @@ -57,7 +57,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "GiB" @@ -180,13 +180,13 @@ msgid "Process Name" msgstr "プロセス名" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "メモリー" @@ -200,42 +200,40 @@ msgstr "CPU: %.1f%%" msgid "RAM: %.1f%%" msgstr "RAM: %.1f%%" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "一般" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "バックグラウンドで起動:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "CPU グラフの線をなめらかに描画 (再起動が必要):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "更新間隔 (再起動が必要):" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "1 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "2 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "3 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "4 秒" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "5 秒" @@ -312,7 +310,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "GHz" @@ -440,26 +438,26 @@ msgstr "プロセスを検索" msgid "Type process name or PID to search" msgstr "プロセス名か PID を入力して検索" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "スワップ" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "GPU" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "計算しています…" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "🇺🇦" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "GitHub で確認" diff --git a/po/jv.po b/po/jv.po index 71a7268c..23bee1c0 100644 --- a/po/jv.po +++ b/po/jv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ka.po b/po/ka.po index 9f4dc3b8..5345b15a 100644 --- a/po/ka.po +++ b/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" "Language-Team: Kurdish \n" "Language-Team: Malayalam \n" "Language-Team: Moldovan \n" "Language-Team: Marathi \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: \n" @@ -52,7 +52,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "GiB" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "Procesnaam" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "Geheugen" @@ -199,42 +199,40 @@ msgstr "CPU: %.1f%%" msgid "RAM: %.1f%%" msgstr "RAM: %.1f%%" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "Algemeen" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "Geminimaliseerd opstarten:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -319,7 +317,7 @@ msgid "℃" msgstr "℃" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "GHz" @@ -459,27 +457,27 @@ msgstr "Zoeken naar proces" msgid "Type process name or PID to search" msgstr "Voer de procesnaam of pid in" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "Wisselgeheugen" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 #, fuzzy msgid "GPU" msgstr "CPU" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "Bezig met berekenen…" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "Controleren op GitHub" diff --git a/po/nn.po b/po/nn.po index fa1b9528..9b5aa247 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Occitan \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Silesian \n" "Language-Team: none\n" @@ -59,7 +59,7 @@ msgstr "MiB" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "GiB" @@ -182,13 +182,13 @@ msgid "Process Name" msgstr "Süreç Adı" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "CPU" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "Bellek" @@ -202,42 +202,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "Arka planda başlat:" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -315,7 +313,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "GHz" @@ -443,27 +441,27 @@ msgstr "Süreç Ara" msgid "Type process name or PID to search" msgstr "Aramak için süreç adı veya PID yazın" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "Takas" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 #, fuzzy msgid "GPU" msgstr "CPU" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "Hesaplanıyor…" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ts.po b/po/ts.po index e43e7a1d..011ca28d 100644 --- a/po/ts.po +++ b/po/ts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/tt.po b/po/tt.po index 107611fe..ee57a122 100644 --- a/po/tt.po +++ b/po/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/tw.po b/po/tw.po index ee8ab1a0..c46581af 100644 --- a/po/tw.po +++ b/po/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ty.po b/po/ty.po index 66ebe98f..460bdb78 100644 --- a/po/ty.po +++ b/po/ty.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/ug.po b/po/ug.po index fc273528..f2cca946 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -56,7 +56,7 @@ msgstr "" #: src/Utils.vala:92 #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:128 -#: src/Widgets/Statusbar/Statusbar.vala:94 +#: src/Widgets/Statusbar/Statusbar.vala:93 msgid "GiB" msgstr "" @@ -179,13 +179,13 @@ msgid "Process Name" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:40 -#: src/Widgets/Statusbar/Statusbar.vala:10 +#: src/Widgets/Statusbar/Statusbar.vala:9 msgid "CPU" msgstr "" #: src/Views/ProcessView/ProcessTreeView/CPUProcessTreeView.vala:51 #: src/Views/SystemView/SystemMemoryView.vala:13 -#: src/Widgets/Statusbar/Statusbar.vala:14 +#: src/Widgets/Statusbar/Statusbar.vala:13 msgid "Memory" msgstr "" @@ -199,42 +199,40 @@ msgstr "" msgid "RAM: %.1f%%" msgstr "" -#. status: "Spinning", -#. header: "General Preferences", -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:21 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:13 #: src/Views/SystemView/SystemCPUInfoPopover.vala:21 msgid "General" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:26 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:18 msgid "Start in background:" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:35 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:27 msgid "Draw smooth lines on CPU chart (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:43 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:36 msgid "Update every (requires restart):" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:53 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:48 msgid "1s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:54 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:49 msgid "2s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:55 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:50 msgid "3s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:56 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:51 msgid "4s" msgstr "" -#: src/Views/PreferencesView/PreferencesGeneralPage.vala:57 +#: src/Views/PreferencesView/PreferencesGeneralPage.vala:52 msgid "5s" msgstr "" @@ -311,7 +309,7 @@ msgid "℃" msgstr "" #: src/Views/SystemView/SystemCPUView.vala:126 -#: src/Widgets/Statusbar/Statusbar.vala:83 +#: src/Widgets/Statusbar/Statusbar.vala:82 msgid "GHz" msgstr "" @@ -439,26 +437,26 @@ msgstr "" msgid "Type process name or PID to search" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:18 +#: src/Widgets/Statusbar/Statusbar.vala:17 msgid "Swap" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:22 +#: src/Widgets/Statusbar/Statusbar.vala:21 msgid "GPU" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:25 -#: src/Widgets/Statusbar/Statusbar.vala:31 -#: src/Widgets/Statusbar/Statusbar.vala:38 -#: src/Widgets/Statusbar/Statusbar.vala:45 +#: src/Widgets/Statusbar/Statusbar.vala:24 +#: src/Widgets/Statusbar/Statusbar.vala:30 +#: src/Widgets/Statusbar/Statusbar.vala:37 +#: src/Widgets/Statusbar/Statusbar.vala:44 msgid "Calculating…" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:52 +#: src/Widgets/Statusbar/Statusbar.vala:51 msgid "🇺🇦" msgstr "" -#: src/Widgets/Statusbar/Statusbar.vala:53 +#: src/Widgets/Statusbar/Statusbar.vala:52 msgid "Check on Github" msgstr "" diff --git a/po/uk.po b/po/uk.po index 5c172a57..4fdbf548 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.stsdc.monitor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 14:45+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" "Language-Team: Chinese \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Traditional) Date: Sat, 12 Oct 2024 14:37:20 +0000 Subject: [PATCH 486/486] Update translation files Updated by "Update PO files to match POT (msgmerge)" add-on in Weblate. Translation: Desktop/Monitor (Extra) Translate-URL: https://l10n.elementary.io/projects/desktop/monitor-extra/ --- po/extra/aa.po | 2 +- po/extra/ab.po | 2 +- po/extra/ace.po | 2 +- po/extra/ae.po | 2 +- po/extra/af.po | 2 +- po/extra/ak.po | 2 +- po/extra/am.po | 2 +- po/extra/an.po | 2 +- po/extra/ar.po | 2 +- po/extra/as.po | 2 +- po/extra/ast.po | 2 +- po/extra/av.po | 2 +- po/extra/ay.po | 2 +- po/extra/az.po | 2 +- po/extra/ba.po | 2 +- po/extra/be.po | 2 +- po/extra/bg.po | 2 +- po/extra/bh.po | 2 +- po/extra/bi.po | 2 +- po/extra/bm.po | 2 +- po/extra/bn.po | 2 +- po/extra/bo.po | 2 +- po/extra/br.po | 2 +- po/extra/bs.po | 2 +- po/extra/ca.po | 17 +++++++++-------- po/extra/ca@valencia.po | 2 +- po/extra/ce.po | 2 +- po/extra/ch.po | 2 +- po/extra/ckb.po | 2 +- po/extra/co.po | 2 +- po/extra/cr.po | 2 +- po/extra/cs.po | 2 +- po/extra/cu.po | 2 +- po/extra/cv.po | 2 +- po/extra/cy.po | 2 +- po/extra/da.po | 2 +- po/extra/de.po | 2 +- po/extra/dv.po | 2 +- po/extra/dz.po | 2 +- po/extra/ee.po | 2 +- po/extra/el.po | 2 +- po/extra/en_AU.po | 2 +- po/extra/en_CA.po | 2 +- po/extra/en_GB.po | 2 +- po/extra/en_ZA.po | 2 +- po/extra/eo.po | 2 +- po/extra/es.po | 12 +++++++----- po/extra/et.po | 2 +- po/extra/eu.po | 2 +- po/extra/fa.po | 2 +- po/extra/ff.po | 2 +- po/extra/fi.po | 2 +- po/extra/fil.po | 2 +- po/extra/fj.po | 2 +- po/extra/fo.po | 2 +- po/extra/fr.po | 2 +- po/extra/fr_CA.po | 2 +- po/extra/frp.po | 2 +- po/extra/fy.po | 2 +- po/extra/ga.po | 2 +- po/extra/gd.po | 2 +- po/extra/gl.po | 2 +- po/extra/gn.po | 2 +- po/extra/gu.po | 2 +- po/extra/gv.po | 2 +- po/extra/ha.po | 2 +- po/extra/he.po | 6 +++--- po/extra/hi.po | 2 +- po/extra/ho.po | 2 +- po/extra/hr.po | 2 +- po/extra/ht.po | 2 +- po/extra/hu.po | 2 +- po/extra/hy.po | 2 +- po/extra/hz.po | 2 +- po/extra/ia.po | 2 +- po/extra/id.po | 2 +- po/extra/id_ID.po | 2 +- po/extra/ie.po | 2 +- po/extra/ig.po | 2 +- po/extra/ii.po | 2 +- po/extra/ik.po | 2 +- po/extra/io.po | 2 +- po/extra/is.po | 2 +- po/extra/it.po | 2 +- po/extra/iu.po | 2 +- po/extra/ja.po | 2 +- po/extra/jv.po | 2 +- po/extra/ka.po | 2 +- po/extra/kg.po | 2 +- po/extra/ki.po | 2 +- po/extra/kj.po | 2 +- po/extra/kk.po | 2 +- po/extra/kl.po | 2 +- po/extra/km.po | 2 +- po/extra/kn.po | 2 +- po/extra/ko.po | 2 +- po/extra/kr.po | 2 +- po/extra/ks.po | 2 +- po/extra/ku.po | 2 +- po/extra/kv.po | 2 +- po/extra/kw.po | 2 +- po/extra/ky.po | 2 +- po/extra/la.po | 2 +- po/extra/lb.po | 2 +- po/extra/lg.po | 2 +- po/extra/li.po | 2 +- po/extra/ln.po | 2 +- po/extra/lo.po | 2 +- po/extra/lt.po | 2 +- po/extra/lu.po | 2 +- po/extra/lv.po | 2 +- po/extra/mg.po | 2 +- po/extra/mh.po | 2 +- po/extra/mi.po | 2 +- po/extra/mk.po | 2 +- po/extra/ml.po | 2 +- po/extra/mn.po | 2 +- po/extra/mo.po | 2 +- po/extra/mr.po | 2 +- po/extra/ms.po | 2 +- po/extra/mt.po | 2 +- po/extra/my.po | 2 +- po/extra/na.po | 2 +- po/extra/nb.po | 2 +- po/extra/nd.po | 2 +- po/extra/ne.po | 2 +- po/extra/ng.po | 2 +- po/extra/nl.po | 2 +- po/extra/nn.po | 2 +- po/extra/no.po | 2 +- po/extra/nr.po | 2 +- po/extra/nv.po | 2 +- po/extra/ny.po | 2 +- po/extra/oc.po | 2 +- po/extra/oj.po | 2 +- po/extra/om.po | 2 +- po/extra/or.po | 2 +- po/extra/os.po | 2 +- po/extra/pa.po | 2 +- po/extra/pap.po | 2 +- po/extra/pi.po | 2 +- po/extra/pl.po | 2 +- po/extra/ps.po | 2 +- po/extra/pt.po | 2 +- po/extra/pt_BR.po | 2 +- po/extra/qu.po | 2 +- po/extra/rm.po | 2 +- po/extra/rn.po | 2 +- po/extra/ro.po | 2 +- po/extra/ru.po | 9 +++++---- po/extra/rue.po | 2 +- po/extra/rw.po | 2 +- po/extra/sa.po | 2 +- po/extra/sc.po | 2 +- po/extra/sd.po | 2 +- po/extra/se.po | 2 +- po/extra/sg.po | 2 +- po/extra/si.po | 2 +- po/extra/sk.po | 2 +- po/extra/sl.po | 2 +- po/extra/sm.po | 2 +- po/extra/sma.po | 2 +- po/extra/sn.po | 2 +- po/extra/so.po | 2 +- po/extra/sq.po | 2 +- po/extra/sr.po | 2 +- po/extra/sr@latin.po | 2 +- po/extra/ss.po | 2 +- po/extra/st.po | 2 +- po/extra/su.po | 2 +- po/extra/sv.po | 2 +- po/extra/sw.po | 2 +- po/extra/szl.po | 2 +- po/extra/ta.po | 2 +- po/extra/te.po | 2 +- po/extra/tg.po | 2 +- po/extra/th.po | 2 +- po/extra/ti.po | 2 +- po/extra/tk.po | 2 +- po/extra/tl.po | 2 +- po/extra/tn.po | 2 +- po/extra/to.po | 2 +- po/extra/tr.po | 2 +- po/extra/ts.po | 2 +- po/extra/tt.po | 2 +- po/extra/tw.po | 2 +- po/extra/ty.po | 2 +- po/extra/ug.po | 2 +- po/extra/uk.po | 6 +++--- po/extra/ur.po | 2 +- po/extra/uz.po | 2 +- po/extra/ve.po | 2 +- po/extra/vi.po | 2 +- po/extra/vo.po | 2 +- po/extra/wa.po | 2 +- po/extra/wo.po | 2 +- po/extra/xh.po | 2 +- po/extra/yi.po | 2 +- po/extra/yo.po | 2 +- po/extra/za.po | 2 +- po/extra/zh.po | 2 +- po/extra/zh_HK.po | 2 +- po/extra/zh_Hans.po | 2 +- po/extra/zh_Hant.po | 2 +- po/extra/zu.po | 2 +- 205 files changed, 227 insertions(+), 223 deletions(-) diff --git a/po/extra/aa.po b/po/extra/aa.po index 7b1ef0c7..8f3e91b5 100644 --- a/po/extra/aa.po +++ b/po/extra/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ab.po b/po/extra/ab.po index d0743c20..ae867ed4 100644 --- a/po/extra/ab.po +++ b/po/extra/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ace.po b/po/extra/ace.po index 4014aaf9..05ab697b 100644 --- a/po/extra/ace.po +++ b/po/extra/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ae.po b/po/extra/ae.po index ef8c8630..27d1e250 100644 --- a/po/extra/ae.po +++ b/po/extra/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/af.po b/po/extra/af.po index 08af41e3..0ee42e87 100644 --- a/po/extra/af.po +++ b/po/extra/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ak.po b/po/extra/ak.po index 255a28dc..066faae8 100644 --- a/po/extra/ak.po +++ b/po/extra/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/am.po b/po/extra/am.po index 009b43dd..60cecdd6 100644 --- a/po/extra/am.po +++ b/po/extra/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/an.po b/po/extra/an.po index 4f9b0eb0..5a76e726 100644 --- a/po/extra/an.po +++ b/po/extra/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ar.po b/po/extra/ar.po index 5e7a8f30..71db9bd5 100644 --- a/po/extra/ar.po +++ b/po/extra/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/as.po b/po/extra/as.po index 6b510d82..031d3d57 100644 --- a/po/extra/as.po +++ b/po/extra/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ast.po b/po/extra/ast.po index 5f45bc60..59e175af 100644 --- a/po/extra/ast.po +++ b/po/extra/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/av.po b/po/extra/av.po index 268c5f09..fafdfa04 100644 --- a/po/extra/av.po +++ b/po/extra/av.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ay.po b/po/extra/ay.po index 4f5acf53..392efa76 100644 --- a/po/extra/ay.po +++ b/po/extra/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/az.po b/po/extra/az.po index 6d910b57..4b831ef3 100644 --- a/po/extra/az.po +++ b/po/extra/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ba.po b/po/extra/ba.po index de06adf8..a896854c 100644 --- a/po/extra/ba.po +++ b/po/extra/ba.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/be.po b/po/extra/be.po index 8ad95c99..00bc8ac2 100644 --- a/po/extra/be.po +++ b/po/extra/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bg.po b/po/extra/bg.po index 9b440954..b71015a1 100644 --- a/po/extra/bg.po +++ b/po/extra/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bh.po b/po/extra/bh.po index f7c79b9e..c3c0c974 100644 --- a/po/extra/bh.po +++ b/po/extra/bh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bi.po b/po/extra/bi.po index 1d3b4bea..ab98ef18 100644 --- a/po/extra/bi.po +++ b/po/extra/bi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bm.po b/po/extra/bm.po index 961c74c9..2c0470b6 100644 --- a/po/extra/bm.po +++ b/po/extra/bm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bn.po b/po/extra/bn.po index 112c31de..a13c167f 100644 --- a/po/extra/bn.po +++ b/po/extra/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bo.po b/po/extra/bo.po index 8104a41e..dd4b3fef 100644 --- a/po/extra/bo.po +++ b/po/extra/bo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/br.po b/po/extra/br.po index 7b4172a9..fa322d87 100644 --- a/po/extra/br.po +++ b/po/extra/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bs.po b/po/extra/bs.po index 24b55335..8dfb5882 100644 --- a/po/extra/bs.po +++ b/po/extra/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ca.po b/po/extra/ca.po index c576cfbe..fb4d5488 100644 --- a/po/extra/ca.po +++ b/po/extra/ca.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: David M \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,8 +51,8 @@ msgstr "Usa Wingpanel v3; Nou mantenidor de paquets *.deb: Kristopher Ives" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" msgstr "" -"🐛 Cal arreglar l'indicador buit. Si us plau, reinicieu després de la instal·" -"lació ⚡️" +"🐛 Cal arreglar l'indicador buit. Si us plau, reinicieu després de la " +"instal·lació ⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" @@ -124,7 +124,8 @@ msgstr "Actualització de la traducció al japonès (Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:95 msgid "Disable search entry, when System tab is active" -msgstr "Desactiva l'entrada de cerca quan la pestanya de sistema estigui activa" +msgstr "" +"Desactiva l'entrada de cerca quan la pestanya de sistema estigui activa" #: data/com.github.stsdc.monitor.appdata.xml.in:96 msgid "Add screenshots" @@ -193,8 +194,8 @@ msgstr "Actualització de la traducció francesa (Nathan Bonnemains i Skeudwenn) #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" msgstr "" -"Correcció: no es mostra el percentatge d'intercanvi quan no està disponible (" -"Ryo Nakano)" +"Correcció: no es mostra el percentatge d'intercanvi quan no està disponible " +"(Ryo Nakano)" #: data/com.github.stsdc.monitor.appdata.xml.in:153 msgid "Update Italian translation (Mirko Brombin)" diff --git a/po/extra/ca@valencia.po b/po/extra/ca@valencia.po index e6d07b89..d95de34d 100644 --- a/po/extra/ca@valencia.po +++ b/po/extra/ca@valencia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ce.po b/po/extra/ce.po index 3e223d58..ac3c3a4a 100644 --- a/po/extra/ce.po +++ b/po/extra/ce.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ch.po b/po/extra/ch.po index 5790bbbe..ff2ced8c 100644 --- a/po/extra/ch.po +++ b/po/extra/ch.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ckb.po b/po/extra/ckb.po index d983e6a9..21b8db06 100644 --- a/po/extra/ckb.po +++ b/po/extra/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/co.po b/po/extra/co.po index 40ca2933..1ab9bd6f 100644 --- a/po/extra/co.po +++ b/po/extra/co.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cr.po b/po/extra/cr.po index 2550cfa5..d3ff78a3 100644 --- a/po/extra/cr.po +++ b/po/extra/cr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cs.po b/po/extra/cs.po index 6a4d41a9..31af26df 100644 --- a/po/extra/cs.po +++ b/po/extra/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cu.po b/po/extra/cu.po index d954585f..027a1105 100644 --- a/po/extra/cu.po +++ b/po/extra/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cv.po b/po/extra/cv.po index 4e414da5..6ad4f2e9 100644 --- a/po/extra/cv.po +++ b/po/extra/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cy.po b/po/extra/cy.po index 7a3940e3..98d5db80 100644 --- a/po/extra/cy.po +++ b/po/extra/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/da.po b/po/extra/da.po index fc7e33c0..53fd6d51 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/de.po b/po/extra/de.po index 1fb2ba20..3bdecc00 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,8 @@ msgstr "Gestiona procesos y monitoriza los recursos del sistema" #: data/com.github.stsdc.monitor.appdata.xml.in:10 msgid "Display usage of system resources, filter and manage processes." -msgstr "Muestra el uso de los recursos del sistema, filtra y gestiona procesos." +msgstr "" +"Muestra el uso de los recursos del sistema, filtra y gestiona procesos." #: data/com.github.stsdc.monitor.appdata.xml.in:25 msgid "Stanisław Dac" @@ -193,7 +194,8 @@ msgstr "Se actualizó la traducción al portugués (Hugo Carvalho)" #: data/com.github.stsdc.monitor.appdata.xml.in:145 msgid "Update French translation (Nathan Bonnemains and Skeudwenn)" -msgstr "Se actualizó la traducción al francés (Nathan Bonnemains and Skeudwenn)" +msgstr "" +"Se actualizó la traducción al francés (Nathan Bonnemains and Skeudwenn)" #: data/com.github.stsdc.monitor.appdata.xml.in:146 msgid "Fix: Don't show swap percentage when it's not available (Ryo Nakano)" diff --git a/po/extra/et.po b/po/extra/et.po index 88f5b923..e54adcfa 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/eu.po b/po/extra/eu.po index c4b124a0..83ec0db9 100644 --- a/po/extra/eu.po +++ b/po/extra/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fa.po b/po/extra/fa.po index f39836be..a60a466d 100644 --- a/po/extra/fa.po +++ b/po/extra/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ff.po b/po/extra/ff.po index bfc01271..d81d465f 100644 --- a/po/extra/ff.po +++ b/po/extra/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fi.po b/po/extra/fi.po index 5cf213f0..29b48c5a 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fil.po b/po/extra/fil.po index ad823ab8..032c5a8e 100644 --- a/po/extra/fil.po +++ b/po/extra/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fj.po b/po/extra/fj.po index 13532b84..26ceeeaa 100644 --- a/po/extra/fj.po +++ b/po/extra/fj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fo.po b/po/extra/fo.po index 01a228d4..7a5f1fed 100644 --- a/po/extra/fo.po +++ b/po/extra/fo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fr.po b/po/extra/fr.po index 6849ab46..0cbf090d 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2019-01-25 16:00+0100\n" "Last-Translator: NathanBnm\n" "Language-Team: Français\n" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po index 22bfdbdf..999c3848 100644 --- a/po/extra/fr_CA.po +++ b/po/extra/fr_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/frp.po b/po/extra/frp.po index a400d094..56a3892b 100644 --- a/po/extra/frp.po +++ b/po/extra/frp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fy.po b/po/extra/fy.po index 6ca0d28a..6d4743ee 100644 --- a/po/extra/fy.po +++ b/po/extra/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ga.po b/po/extra/ga.po index 37d70485..9eccb5fe 100644 --- a/po/extra/ga.po +++ b/po/extra/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/gd.po b/po/extra/gd.po index 0049efd4..6ecbc4f1 100644 --- a/po/extra/gd.po +++ b/po/extra/gd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/gl.po b/po/extra/gl.po index c0d50981..7822ecfc 100644 --- a/po/extra/gl.po +++ b/po/extra/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/gn.po b/po/extra/gn.po index 83f230cf..8867d31f 100644 --- a/po/extra/gn.po +++ b/po/extra/gn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/gu.po b/po/extra/gu.po index 22daddad..b85c574f 100644 --- a/po/extra/gu.po +++ b/po/extra/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/gv.po b/po/extra/gv.po index 497e4db1..800fa1d8 100644 --- a/po/extra/gv.po +++ b/po/extra/gv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ha.po b/po/extra/ha.po index 64affff2..6b469f40 100644 --- a/po/extra/ha.po +++ b/po/extra/ha.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/he.po b/po/extra/he.po index c22081ae..d9419200 100644 --- a/po/extra/he.po +++ b/po/extra/he.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-11 19:06+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/po/extra/hi.po b/po/extra/hi.po index 2a4577f9..bdb03d29 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ho.po b/po/extra/ho.po index 35ebaad0..f247a1c2 100644 --- a/po/extra/ho.po +++ b/po/extra/ho.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/hr.po b/po/extra/hr.po index 1e46c252..c1a12c7a 100644 --- a/po/extra/hr.po +++ b/po/extra/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ht.po b/po/extra/ht.po index 922f5c65..bc561454 100644 --- a/po/extra/ht.po +++ b/po/extra/ht.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/hu.po b/po/extra/hu.po index 1d42462c..4f62437f 100644 --- a/po/extra/hu.po +++ b/po/extra/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/hy.po b/po/extra/hy.po index 8458e868..50f87102 100644 --- a/po/extra/hy.po +++ b/po/extra/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/hz.po b/po/extra/hz.po index 026fd0db..0b1b6a27 100644 --- a/po/extra/hz.po +++ b/po/extra/hz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ia.po b/po/extra/ia.po index a7dd497d..3834c260 100644 --- a/po/extra/ia.po +++ b/po/extra/ia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/id.po b/po/extra/id.po index 088ae570..caff05a4 100644 --- a/po/extra/id.po +++ b/po/extra/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/id_ID.po b/po/extra/id_ID.po index dd532018..19eb9e2d 100644 --- a/po/extra/id_ID.po +++ b/po/extra/id_ID.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ie.po b/po/extra/ie.po index d50cc434..402e1b0f 100644 --- a/po/extra/ie.po +++ b/po/extra/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ig.po b/po/extra/ig.po index 6ea9bd15..31fca613 100644 --- a/po/extra/ig.po +++ b/po/extra/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ii.po b/po/extra/ii.po index 5d6ab22a..cc0adb6b 100644 --- a/po/extra/ii.po +++ b/po/extra/ii.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ik.po b/po/extra/ik.po index 2af65a74..113ee1a6 100644 --- a/po/extra/ik.po +++ b/po/extra/ik.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/io.po b/po/extra/io.po index 67213c25..290d6406 100644 --- a/po/extra/io.po +++ b/po/extra/io.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/is.po b/po/extra/is.po index c07d1722..f733e0da 100644 --- a/po/extra/is.po +++ b/po/extra/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/it.po b/po/extra/it.po index a2727e6a..de5226eb 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Italian \n" "Language-Team: none\n" diff --git a/po/extra/jv.po b/po/extra/jv.po index 35659ec3..7e3d87f1 100644 --- a/po/extra/jv.po +++ b/po/extra/jv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ka.po b/po/extra/ka.po index 6e76e4d9..ffa7f283 100644 --- a/po/extra/ka.po +++ b/po/extra/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kg.po b/po/extra/kg.po index 44233540..d79abaa6 100644 --- a/po/extra/kg.po +++ b/po/extra/kg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ki.po b/po/extra/ki.po index 64e68056..a333cbeb 100644 --- a/po/extra/ki.po +++ b/po/extra/ki.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kj.po b/po/extra/kj.po index 6c35f8ef..deae7fd3 100644 --- a/po/extra/kj.po +++ b/po/extra/kj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kk.po b/po/extra/kk.po index 268cf99d..c18005c5 100644 --- a/po/extra/kk.po +++ b/po/extra/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kl.po b/po/extra/kl.po index 83753e52..142c45cb 100644 --- a/po/extra/kl.po +++ b/po/extra/kl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/km.po b/po/extra/km.po index 8c165e0a..505aa3a3 100644 --- a/po/extra/km.po +++ b/po/extra/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kn.po b/po/extra/kn.po index ac873959..66eee92c 100644 --- a/po/extra/kn.po +++ b/po/extra/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ko.po b/po/extra/ko.po index 9ab7ac26..60f0a401 100644 --- a/po/extra/ko.po +++ b/po/extra/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kr.po b/po/extra/kr.po index ca2aaf02..412eb37e 100644 --- a/po/extra/kr.po +++ b/po/extra/kr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ks.po b/po/extra/ks.po index 59cfcb76..9b008b10 100644 --- a/po/extra/ks.po +++ b/po/extra/ks.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ku.po b/po/extra/ku.po index d29286fc..5013c8c9 100644 --- a/po/extra/ku.po +++ b/po/extra/ku.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kv.po b/po/extra/kv.po index 9879fcbf..7d31940a 100644 --- a/po/extra/kv.po +++ b/po/extra/kv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/kw.po b/po/extra/kw.po index ef4c9246..6f21da87 100644 --- a/po/extra/kw.po +++ b/po/extra/kw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ky.po b/po/extra/ky.po index 2aa80150..af0b41f2 100644 --- a/po/extra/ky.po +++ b/po/extra/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/la.po b/po/extra/la.po index f825c314..03e30240 100644 --- a/po/extra/la.po +++ b/po/extra/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lb.po b/po/extra/lb.po index e8d78dc5..63d1cbb6 100644 --- a/po/extra/lb.po +++ b/po/extra/lb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lg.po b/po/extra/lg.po index f172accc..af9d3eec 100644 --- a/po/extra/lg.po +++ b/po/extra/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/li.po b/po/extra/li.po index c5a55db0..a5dc7815 100644 --- a/po/extra/li.po +++ b/po/extra/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ln.po b/po/extra/ln.po index b72bf8e9..92bc06bf 100644 --- a/po/extra/ln.po +++ b/po/extra/ln.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lo.po b/po/extra/lo.po index ef1bb7e0..7137edce 100644 --- a/po/extra/lo.po +++ b/po/extra/lo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lt.po b/po/extra/lt.po index 4abc4a80..6ea11128 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" "Language-Team: Lithuanian \n" "Language-Team: none\n" diff --git a/po/extra/nn.po b/po/extra/nn.po index 0da761f3..cbe1b434 100644 --- a/po/extra/nn.po +++ b/po/extra/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/no.po b/po/extra/no.po index 5523dd0e..3c72cbf7 100644 --- a/po/extra/no.po +++ b/po/extra/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/nr.po b/po/extra/nr.po index 97a56886..8ccf64da 100644 --- a/po/extra/nr.po +++ b/po/extra/nr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/nv.po b/po/extra/nv.po index a0e5adbb..5624bb1b 100644 --- a/po/extra/nv.po +++ b/po/extra/nv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ny.po b/po/extra/ny.po index bdd9c589..d4642b41 100644 --- a/po/extra/ny.po +++ b/po/extra/ny.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/oc.po b/po/extra/oc.po index b4bd0c09..86f56ec5 100644 --- a/po/extra/oc.po +++ b/po/extra/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/oj.po b/po/extra/oj.po index ff5b36dc..fcccc7e6 100644 --- a/po/extra/oj.po +++ b/po/extra/oj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/om.po b/po/extra/om.po index 922db0db..1e8e5cd7 100644 --- a/po/extra/om.po +++ b/po/extra/om.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/or.po b/po/extra/or.po index dc62c01d..2db69593 100644 --- a/po/extra/or.po +++ b/po/extra/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/os.po b/po/extra/os.po index a2050193..5c9b44d8 100644 --- a/po/extra/os.po +++ b/po/extra/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pa.po b/po/extra/pa.po index 3d65b0d9..8adb1d5e 100644 --- a/po/extra/pa.po +++ b/po/extra/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pap.po b/po/extra/pap.po index a935b61f..75636de9 100644 --- a/po/extra/pap.po +++ b/po/extra/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pi.po b/po/extra/pi.po index 920dd9ea..c1f6cb4b 100644 --- a/po/extra/pi.po +++ b/po/extra/pi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pl.po b/po/extra/pl.po index 2de6a04b..25bf4319 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-08 17:21+0000\n" "Last-Translator: anonymous \n" "Language-Team: Polish \n" "Language-Team: \n" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index 4493a98f..bedf9c1a 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/qu.po b/po/extra/qu.po index fc1090b2..b37437e6 100644 --- a/po/extra/qu.po +++ b/po/extra/qu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/rm.po b/po/extra/rm.po index 214d0500..17c6def6 100644 --- a/po/extra/rm.po +++ b/po/extra/rm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/rn.po b/po/extra/rn.po index 37fab20d..f6b62e83 100644 --- a/po/extra/rn.po +++ b/po/extra/rn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ro.po b/po/extra/ro.po index b0e0e310..60dec2dd 100644 --- a/po/extra/ro.po +++ b/po/extra/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2020-12-16 09:58+0200\n" "Last-Translator: \n" "Language-Team: \n" diff --git a/po/extra/ru.po b/po/extra/ru.po index 32c3b612..73d37f60 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-11 11:16+0000\n" "Last-Translator: кубик круглый \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,8 @@ msgstr "" #: data/com.github.stsdc.monitor.appdata.xml.in:48 msgid "🐛 Should fix empty Indicator. Please reboot after installation ⚡️" -msgstr "🐛 Должно исправить пустой индикатор. Перезагрузитесь после установки ⚡️" +msgstr "" +"🐛 Должно исправить пустой индикатор. Перезагрузитесь после установки ⚡️" #: data/com.github.stsdc.monitor.appdata.xml.in:54 msgid "🐛 Try to fix frequent GUI hangs 🥶" diff --git a/po/extra/rue.po b/po/extra/rue.po index 935ca896..7f4d8b44 100644 --- a/po/extra/rue.po +++ b/po/extra/rue.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/rw.po b/po/extra/rw.po index 382630e6..aee9b5da 100644 --- a/po/extra/rw.po +++ b/po/extra/rw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sa.po b/po/extra/sa.po index a8afb921..560926b4 100644 --- a/po/extra/sa.po +++ b/po/extra/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sc.po b/po/extra/sc.po index 5eb69b2f..cadb0318 100644 --- a/po/extra/sc.po +++ b/po/extra/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sd.po b/po/extra/sd.po index 73837766..fa53794c 100644 --- a/po/extra/sd.po +++ b/po/extra/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/se.po b/po/extra/se.po index 1150631b..6173bad9 100644 --- a/po/extra/se.po +++ b/po/extra/se.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sg.po b/po/extra/sg.po index fa8b5f76..b8291229 100644 --- a/po/extra/sg.po +++ b/po/extra/sg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/si.po b/po/extra/si.po index 422ec888..3e73fa6a 100644 --- a/po/extra/si.po +++ b/po/extra/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sk.po b/po/extra/sk.po index b7b16f30..1d0e36d3 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sl.po b/po/extra/sl.po index 6ce938bc..ce30960e 100644 --- a/po/extra/sl.po +++ b/po/extra/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sm.po b/po/extra/sm.po index 7372d799..899f1c4a 100644 --- a/po/extra/sm.po +++ b/po/extra/sm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sma.po b/po/extra/sma.po index 5a5fe27d..61d62c82 100644 --- a/po/extra/sma.po +++ b/po/extra/sma.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sn.po b/po/extra/sn.po index 48d3cfe9..c6acf4c4 100644 --- a/po/extra/sn.po +++ b/po/extra/sn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/so.po b/po/extra/so.po index 6c8cd41e..1db954e9 100644 --- a/po/extra/so.po +++ b/po/extra/so.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sq.po b/po/extra/sq.po index 8009f11f..a5f4b217 100644 --- a/po/extra/sq.po +++ b/po/extra/sq.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sr.po b/po/extra/sr.po index 09661a8a..88fb12e0 100644 --- a/po/extra/sr.po +++ b/po/extra/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sr@latin.po b/po/extra/sr@latin.po index 2bf1c521..fd3f3f8b 100644 --- a/po/extra/sr@latin.po +++ b/po/extra/sr@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ss.po b/po/extra/ss.po index b18e2ac5..a128c7c8 100644 --- a/po/extra/ss.po +++ b/po/extra/ss.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/st.po b/po/extra/st.po index 9fc682be..0257a02a 100644 --- a/po/extra/st.po +++ b/po/extra/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/su.po b/po/extra/su.po index a3110851..b62923dc 100644 --- a/po/extra/su.po +++ b/po/extra/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sv.po b/po/extra/sv.po index 01d82008..4f3ef078 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sw.po b/po/extra/sw.po index 8846d9e3..80761ced 100644 --- a/po/extra/sw.po +++ b/po/extra/sw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/szl.po b/po/extra/szl.po index 9a8ee38d..6004b49d 100644 --- a/po/extra/szl.po +++ b/po/extra/szl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ta.po b/po/extra/ta.po index c2b041ae..f6f7a068 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/te.po b/po/extra/te.po index 878be5d5..f4949059 100644 --- a/po/extra/te.po +++ b/po/extra/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tg.po b/po/extra/tg.po index 091f7902..08d40f74 100644 --- a/po/extra/tg.po +++ b/po/extra/tg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/th.po b/po/extra/th.po index 37fd6690..2b5df532 100644 --- a/po/extra/th.po +++ b/po/extra/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ti.po b/po/extra/ti.po index f937ce00..480df979 100644 --- a/po/extra/ti.po +++ b/po/extra/ti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tk.po b/po/extra/tk.po index 1355fa87..cd5910f7 100644 --- a/po/extra/tk.po +++ b/po/extra/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tl.po b/po/extra/tl.po index 475e2639..c5ec9989 100644 --- a/po/extra/tl.po +++ b/po/extra/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tn.po b/po/extra/tn.po index fdbbf92f..ce60198b 100644 --- a/po/extra/tn.po +++ b/po/extra/tn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/to.po b/po/extra/to.po index fc9471aa..24db6c09 100644 --- a/po/extra/to.po +++ b/po/extra/to.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tr.po b/po/extra/tr.po index d970e8c8..56650123 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 20:00+0000\n" +"POT-Creation-Date: 2024-10-12 14:36+0000\n" "PO-Revision-Date: 2024-10-09 20:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian