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 001/394] 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 002/394] 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 003/394] 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 004/394] 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 005/394] 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 006/394] 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 007/394] 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 008/394] 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 009/394] 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 010/394] 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 011/394] 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 012/394] 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 013/394] 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 014/394] 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 015/394] 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 016/394] 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 017/394] 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 018/394] 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 019/394] 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 020/394] 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 021/394] 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 022/394] 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 023/394] 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 024/394] 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 025/394] 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 026/394] 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 027/394] 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 028/394] 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 029/394] 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 030/394] 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 031/394] 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 032/394] 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 033/394] 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 034/394] 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 035/394] 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 036/394] 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 037/394] 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 038/394] 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 039/394] 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 040/394] 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 041/394] 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 042/394] 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 043/394] 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 044/394] 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 045/394] 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 046/394] 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 047/394] 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 048/394] 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 049/394] 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 050/394] 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 051/394] 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 052/394] 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 053/394] 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 054/394] 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 055/394] 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 056/394] 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 057/394] 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 058/394] 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 059/394] 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 060/394] 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 061/394] 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 062/394] =?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 063/394] 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 064/394] 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 065/394] 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 066/394] 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 067/394] 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 068/394] 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 069/394] 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 070/394] 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 071/394] 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 072/394] 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 073/394] 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 074/394] 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 075/394] 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 076/394] 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 077/394] 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 078/394] 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 079/394] 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 080/394] 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 081/394] 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 082/394] 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 083/394] 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 084/394] 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 085/394] 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 086/394] 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 087/394] 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 088/394] 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 089/394] 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 090/394] 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 091/394] 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 092/394] 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 093/394] 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 094/394] 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 095/394] 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 096/394] 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 097/394] 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 098/394] 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 099/394] 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 100/394] 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 101/394] 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 102/394] 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 103/394] 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 104/394] 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 105/394] 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 106/394] 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 107/394] 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 108/394] 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 109/394] 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 110/394] Added translation using Weblate (Faroese)
---
po/extra/fo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/fo.po
diff --git a/po/extra/fo.po b/po/extra/fo.po
new file mode 100644
index 00000000..3125b3a0
--- /dev/null
+++ b/po/extra/fo.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: fo\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 70fd4603cfb0824571e63d316671fb1abb413141 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:34 +0000
Subject: [PATCH 111/394] Added translation using Weblate (Malay)
---
po/extra/ms.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/ms.po
diff --git a/po/extra/ms.po b/po/extra/ms.po
new file mode 100644
index 00000000..aa4a8418
--- /dev/null
+++ b/po/extra/ms.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: ms\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 8fb17104e9f71e854632a60034a0300550eaba7b Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:34 +0000
Subject: [PATCH 112/394] Added translation using Weblate (Tajik)
---
po/extra/tg.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/tg.po
diff --git a/po/extra/tg.po b/po/extra/tg.po
new file mode 100644
index 00000000..586e5d84
--- /dev/null
+++ b/po/extra/tg.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: tg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 2de64432c1640bcef4b49b20db32f539cb0ef592 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:34 +0000
Subject: [PATCH 113/394] Added translation using Weblate (Occitan)
---
po/extra/oc.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/oc.po
diff --git a/po/extra/oc.po b/po/extra/oc.po
new file mode 100644
index 00000000..66bd1d59
--- /dev/null
+++ b/po/extra/oc.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: oc\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 02cbc1bbc9ccc553e18ee9ac99141b9621c5e0f2 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:34 +0000
Subject: [PATCH 114/394] Added translation using Weblate (Thai)
---
po/extra/th.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/th.po
diff --git a/po/extra/th.po b/po/extra/th.po
new file mode 100644
index 00000000..700a36e7
--- /dev/null
+++ b/po/extra/th.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 2394809cf1a49c07b90c088d9da5f6353fc2a961 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:35 +0000
Subject: [PATCH 115/394] Added translation using Weblate (Bosnian)
---
po/extra/bs.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/bs.po
diff --git a/po/extra/bs.po b/po/extra/bs.po
new file mode 100644
index 00000000..81a49944
--- /dev/null
+++ b/po/extra/bs.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: bs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From a64ba6d7c75b1e5a0b1b997db16fca341ef76522 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:35 +0000
Subject: [PATCH 116/394] Added translation using Weblate (Cornish)
---
po/extra/kw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/kw.po
diff --git a/po/extra/kw.po b/po/extra/kw.po
new file mode 100644
index 00000000..941bcf5c
--- /dev/null
+++ b/po/extra/kw.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: kw\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 6fc46968a6a3c72437ab36109f29f50442d004f8 Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:35 +0000
Subject: [PATCH 117/394] Added translation using Weblate (Kinyarwanda)
---
po/extra/rw.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/rw.po
diff --git a/po/extra/rw.po b/po/extra/rw.po
new file mode 100644
index 00000000..398a6465
--- /dev/null
+++ b/po/extra/rw.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: rw\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From b552852d30c2ac54ef6576579da824a6442e022f Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:35 +0000
Subject: [PATCH 118/394] Added translation using Weblate (Wolof)
---
po/extra/wo.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/wo.po
diff --git a/po/extra/wo.po b/po/extra/wo.po
new file mode 100644
index 00000000..39095bc3
--- /dev/null
+++ b/po/extra/wo.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: wo\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From 5959b5e250bee67560e7f478fa9f56cafff8bd7d Mon Sep 17 00:00:00 2001
From: Languages add-on
Date: Wed, 9 Oct 2024 14:45:36 +0000
Subject: [PATCH 119/394] Added translation using Weblate (Galician)
---
po/extra/gl.po | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 po/extra/gl.po
diff --git a/po/extra/gl.po b/po/extra/gl.po
new file mode 100644
index 00000000..d28f4308
--- /dev/null
+++ b/po/extra/gl.po
@@ -0,0 +1,50 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-20 22:25+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: gl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:7
+#: data/com.github.stsdc.monitor.desktop.in:3
+msgid "Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:8
+msgid "Manage processes and monitor system resources"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:10
+msgid "Display usage of system resources, filter and manage processes."
+msgstr ""
+
+#: data/com.github.stsdc.monitor.appdata.xml.in:22
+msgid "Stanisław Dac"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:4
+msgid "System Monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:6
+msgid "Manage processes and monitor resource usage of the system"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:10
+msgid "com.github.stsdc.monitor"
+msgstr ""
+
+#: data/com.github.stsdc.monitor.desktop.in:14
+msgid "System monitor;System usage;Task manager;"
+msgstr ""
From cf018e77577658b0b51a03f6b0bef4fe5448c165 Mon Sep 17 00:00:00 2001
From: Languages add-on