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 @@
+
+
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 @@
+
+
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 @@
-
-
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 @@
-
-
+
@@ -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