diff options
Diffstat (limited to 'multiload')
135 files changed, 6097 insertions, 2380 deletions
diff --git a/multiload/Makefile.am b/multiload/Makefile.am index ae48940a..576d2297 100644 --- a/multiload/Makefile.am +++ b/multiload/Makefile.am @@ -1,68 +1,3 @@ -SUBDIRS = docs - -AM_CPPFLAGS = \ - -I$(srcdir) \ - -DMULTILOAD_MENU_UI_DIR=\""$(uidir)"\" \ - $(MATE_APPLETS4_CFLAGS) \ - $(GTOP_APPLETS_CFLAGS) \ - $(GIO_CFLAGS) \ - ${WARN_CFLAGS} - -libexec_PROGRAMS = mate-multiload-applet - -mate_multiload_applet_SOURCES = \ - global.h \ - linux-proc.h \ - load-graph.h \ - linux-proc.c \ - load-graph.c \ - main.c \ - properties.c \ - netspeed.c netspeed.h \ - autoscaler.c \ - autoscaler.h - -mate_multiload_applet_LDADD = \ - $(MATE_APPLETS4_LIBS) \ - $(GTOP_APPLETS_LIBS) \ - $(GIO_LIBS) \ - -lm - -multiload_gschema_in_files = org.mate.panel.applet.multiload.gschema.xml.in -gsettings_SCHEMAS = $(multiload_gschema_in_files:.xml.in=.xml) -@GSETTINGS_RULES@ - -EXTRA_DIST = \ - $(applet_in_files).in \ - $(service_in_files) \ - $(multiload_gschema_in_files) \ - $(ui_DATA) - -uidir = $(datadir)/mate/ui -ui_DATA = multiload-applet-menu.xml - -appletdir = $(datadir)/mate-panel/applets -applet_in_files = org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in -applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) - -$(applet_in_files): $(applet_in_files).in Makefile - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ - $< > $@ - -$(applet_DATA): $(applet_in_files) Makefile - $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ - -servicedir = $(datadir)/dbus-1/services -service_in_files = org.mate.panel.applet.MultiLoadAppletFactory.service.in -service_DATA = $(service_in_files:.service.in=.service) - -org.mate.panel.applet.MultiLoadAppletFactory.service: $(service_in_files) - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - $< > $@ - -CLEANFILES = $(applet_DATA) $(applet_in_files) $(service_DATA) $(gsettings_SCHEMAS) *.gschema.valid +SUBDIRS = docs data src -include $(top_srcdir)/git.mk diff --git a/multiload/autoscaler.h b/multiload/autoscaler.h deleted file mode 100644 index d0ae4cd6..00000000 --- a/multiload/autoscaler.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef MATE_APPLETS_MULTILOAD_AUTOSCALER_H -#define MATE_APPLETS_MULTILOAD_AUTOSCALER_H - -#include <glib.h> -#include <time.h> - -typedef struct _AutoScaler AutoScaler; - -struct _AutoScaler -{ - /* const */ unsigned update_interval; - /* const */ unsigned floor; - unsigned max; - unsigned count; - time_t last_update; - float sum; - float last_average; -}; - - -G_GNUC_INTERNAL void autoscaler_init(AutoScaler *that, unsigned interval, unsigned floor); - -G_GNUC_INTERNAL unsigned autoscaler_get_max(AutoScaler *that, unsigned current); - - -#endif /* MATE_APPLETS_MULTILOAD_AUTOSCALER_H */ diff --git a/multiload/data/Makefile.am b/multiload/data/Makefile.am new file mode 100644 index 00000000..377ddc3f --- /dev/null +++ b/multiload/data/Makefile.am @@ -0,0 +1,54 @@ +NULL = + +applet_in_files = org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in +service_in_files = org.mate.panel.applet.MultiLoadAppletFactory.service.in +gschema_in_files = org.mate.panel.applet.multiload.gschema.xml.in + +if ENABLE_IN_PROCESS +APPLET_LOCATION = $(pkglibdir)/libmate-multiload-applet.so +else !ENABLE_IN_PROCESS +APPLET_LOCATION = $(libexecdir)/mate-multiload-applet +endif !ENABLE_IN_PROCESS + +gsettings_SCHEMAS = $(gschema_in_files:.xml.in=.xml) +@GSETTINGS_RULES@ + +appletdir = $(datadir)/mate-panel/applets +applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) + +$(applet_in_files): $(applet_in_files).in Makefile + $(AM_V_GEN)sed \ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + -e "s|\@APPLET_IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \ + -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ + $< > $@ + +$(applet_DATA): $(applet_in_files) Makefile + $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ + +if !ENABLE_IN_PROCESS +servicedir = $(datadir)/dbus-1/services +service_DATA = $(service_in_files:.service.in=.service) + +$(service_DATA): $(service_in_files) Makefile + $(AM_V_GEN)sed \ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + $< > $@ +endif !ENABLE_IN_PROCESS + +CLEANFILES = \ + $(applet_DATA) \ + $(applet_in_files) \ + $(service_DATA) \ + $(gsettings_SCHEMAS) \ + *.gschema.valid + +EXTRA_DIST = \ + $(applet_in_files).in \ + $(service_in_files) \ + $(gschema_in_files) \ + multiload-applet-menu.xml \ + multiload-resources.gresource.xml \ + properties.ui + +-include $(top_srcdir)/git.mk diff --git a/multiload/multiload-applet-menu.xml b/multiload/data/multiload-applet-menu.xml index 88d28dd9..88d28dd9 100644 --- a/multiload/multiload-applet-menu.xml +++ b/multiload/data/multiload-applet-menu.xml diff --git a/multiload/data/multiload-resources.gresource.xml b/multiload/data/multiload-resources.gresource.xml new file mode 100644 index 00000000..aaf04b33 --- /dev/null +++ b/multiload/data/multiload-resources.gresource.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<gresources> + <gresource prefix="/org/mate/mate-applets/multiload"> + <file compressed="true">multiload-applet-menu.xml</file> + <file compressed="true">properties.ui</file> + </gresource> +</gresources> diff --git a/multiload/org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in.in b/multiload/data/org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in.in index 3eacb2fb..a2b9de2d 100644 --- a/multiload/org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in.in +++ b/multiload/data/org.mate.applets.MultiLoadApplet.mate-panel-applet.desktop.in.in @@ -1,6 +1,7 @@ [Applet Factory] Id=MultiLoadAppletFactory -Location=@LIBEXECDIR@/mate-multiload-applet +Location=@APPLET_LOCATION@ +InProcess=@APPLET_IN_PROCESS@ Name=MultiLoad Applet Factory Description=Factory for creating the load applet. @@ -10,6 +11,7 @@ Description=A system load indicator # Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=utilities-system-monitor MateComponentId=OAFIID:MATE_MultiLoadApplet +Platforms=X11;Wayland; X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=mate-applets X-MATE-Bugzilla-Component=multiload diff --git a/multiload/org.mate.panel.applet.MultiLoadAppletFactory.service.in b/multiload/data/org.mate.panel.applet.MultiLoadAppletFactory.service.in index d4c7da3c..0c75e063 100644 --- a/multiload/org.mate.panel.applet.MultiLoadAppletFactory.service.in +++ b/multiload/data/org.mate.panel.applet.MultiLoadAppletFactory.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=org.mate.panel.applet.MultiLoadAppletFactory -Exec=@LIBEXECDIR@/mate-multiload-applet +Exec=@APPLET_LOCATION@ diff --git a/multiload/org.mate.panel.applet.multiload.gschema.xml.in b/multiload/data/org.mate.panel.applet.multiload.gschema.xml.in index 9f199bc3..5fbc3cb8 100644 --- a/multiload/org.mate.panel.applet.multiload.gschema.xml.in +++ b/multiload/data/org.mate.panel.applet.multiload.gschema.xml.in @@ -24,11 +24,13 @@ <default>false</default> <summary>Enable disk load graph</summary> </key> - <key name="speed" type="i"> + <key name="speed" type="u"> + <range min="50" max="60000"/> <default>500</default> <summary>Applet refresh rate in milliseconds</summary> </key> - <key name="size" type="i"> + <key name="size" type="u"> + <range min="10" max="1000"/> <default>40</default> <summary>Graph size</summary> <description>For horizontal panels, the width of the graphs in pixels. For vertical panels, this is the height of the graphs.</description> @@ -97,17 +99,17 @@ <default>'#0000ff'</default> <summary>Indicator color</summary> </key> - <key name="netthreshold1" type="u"> + <key name="netthreshold1" type="t"> <range min="10" max="999999998"/> <default>1000000</default> <summary>Network threshold 1 in bytes</summary> </key> - <key name="netthreshold2" type="u"> + <key name="netthreshold2" type="t"> <range min="11" max="999999999"/> <default>10000000</default> <summary>Network threshold 2 in bytes</summary> </key> - <key name="netthreshold3" type="u"> + <key name="netthreshold3" type="t"> <range min="12" max="1000000000"/> <default>100000000</default> <summary>Network threshold 3 in bytes</summary> diff --git a/multiload/data/properties.ui b/multiload/data/properties.ui new file mode 100644 index 00000000..0e26c49a --- /dev/null +++ b/multiload/data/properties.ui @@ -0,0 +1,1457 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Generated with glade 3.38.2 --> +<interface> + <requires lib="gtk+" version="3.22"/> + <object class="GtkImage" id="close_button_img"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="icon-name">window-close</property> + </object> + <object class="GtkAdjustment" id="graph_size_spin_button_adj"> + <property name="lower">10</property> + <property name="upper">1000</property> + <property name="value">40</property> + <property name="step-increment">1</property> + <property name="page-increment">5</property> + </object> + <object class="GtkImage" id="help_button_img"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="icon-name">help-browser</property> + </object> + <object class="GtkAdjustment" id="net_threshold1_spin_button_adj"> + <property name="lower">10</property> + <property name="upper">999999998</property> + <property name="value">1000000</property> + <property name="step-increment">500</property> + <property name="page-increment">1000</property> + </object> + <object class="GtkAdjustment" id="net_threshold2_spin_button_adj"> + <property name="lower">11</property> + <property name="upper">999999999</property> + <property name="step-increment">500</property> + <property name="page-increment">1000</property> + </object> + <object class="GtkAdjustment" id="net_threshold3_spin_button_adj"> + <property name="lower">12</property> + <property name="upper">1000000000</property> + <property name="step-increment">500</property> + <property name="page-increment">1000</property> + </object> + <object class="GtkAdjustment" id="speed_spin_button_adj"> + <property name="lower">50</property> + <property name="upper">60000</property> + <property name="value">500</property> + <property name="step-increment">10</property> + <property name="page-increment">100</property> + </object> + <object class="GtkDialog" id="properties_dialog"> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="title" translatable="yes">System Monitor Preferences</property> + <property name="resizable">False</property> + <property name="icon-name">utilities-system-monitor</property> + <property name="type-hint">dialog</property> + <signal name="response" handler="on_properties_dialog_response" swapped="no"/> + <child internal-child="vbox"> + <object class="GtkBox"> + <property name="can-focus">False</property> + <property name="orientation">vertical</property> + <property name="spacing">2</property> + <child internal-child="action_area"> + <object class="GtkButtonBox"> + <property name="can-focus">False</property> + <property name="layout-style">end</property> + <child> + <object class="GtkButton" id="help_button"> + <property name="label" translatable="yes">_Help</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="image">help_button_img</property> + <property name="use-underline">True</property> + <property name="always-show-image">True</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="close_button"> + <property name="label" translatable="yes">_Close</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="can-default">True</property> + <property name="has-default">True</property> + <property name="receives-default">True</property> + <property name="image">close_button_img</property> + <property name="use-underline">True</property> + <property name="always-show-image">True</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label-xalign">0</property> + <property name="shadow-type">none</property> + <child> + <object class="GtkAlignment"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="left-padding">12</property> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="margin-top">6</property> + <property name="spacing">6</property> + <child> + <object class="GtkCheckButton" id="graph_cpuload_checkbox"> + <property name="label" translatable="yes">_Processor</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_cpuload_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="graph_memload_checkbox"> + <property name="label" translatable="yes">_Memory</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_memload_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="graph_netload2_checkbox"> + <property name="label" translatable="yes">_Network</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_netload2_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="graph_swapload_checkbox"> + <property name="label" translatable="yes">S_wap Space</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_swapload_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="graph_loadavg_checkbox"> + <property name="label" translatable="yes">_Load</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_loadavg_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">4</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="graph_diskload_checkbox"> + <property name="label" translatable="yes">_Harddisk</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_graph_diskload_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">5</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Monitored Resources</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label-xalign">0</property> + <property name="shadow-type">none</property> + <child> + <object class="GtkAlignment"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="left-padding">12</property> + <child> + <!-- n-columns=3 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="margin-top">6</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <child> + <object class="GtkLabel" id="graph_size_spin_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">System m_onitor width:</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">graph_size_spin_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="graph_size_spin_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="halign">start</property> + <property name="width-chars">5</property> + <property name="adjustment">graph_size_spin_button_adj</property> + <signal name="value-changed" handler="on_graph_size_spin_button_value_changed" swapped="no"/> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">pixels</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">Sys_tem monitor update interval:</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">speed_spin_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="speed_spin_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="halign">start</property> + <property name="width-chars">5</property> + <property name="adjustment">speed_spin_button_adj</property> + <signal name="value-changed" handler="on_speed_spin_button_value_changed" swapped="no"/> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">milliseconds</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Options</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label-xalign">0</property> + <property name="shadow-type">none</property> + <child> + <object class="GtkAlignment"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="left-padding">12</property> + <child> + <object class="GtkNotebook" id="notebook"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="margin-top">6</property> + <child> + <!-- n-columns=5 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="cpuload_usr_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_cpuload_usr_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="cpuload_usr_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="cpuload_sys_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_cpuload_sys_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="cpuload_sys_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="cpuload_nice_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_cpuload_nice_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="cpuload_nice_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="cpuload_iowait_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_cpuload_iowait_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="cpuload_iowait_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="cpuload_free_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_cpuload_free_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="cpuload_free_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="cpuload_usr_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_User</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">cpuload_usr_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="cpuload_sys_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">S_ystem</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">cpuload_sys_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="cpuload_nice_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">N_ice</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">cpuload_nice_color_button</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="cpuload_iowait_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">I_OWait</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">cpuload_iowait_color_button</property> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="cpuload_free_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">I_dle</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">cpuload_free_color_button</property> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Processor</property> + </object> + <packing> + <property name="tab-fill">False</property> + </packing> + </child> + <child> + <!-- n-columns=5 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="memload_user_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_memload_user_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="memload_user_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="memload_user_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_User</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">memload_user_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="memload_shared_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_memload_shared_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="memload_shared_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="memload_shared_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Sh_ared</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">memload_shared_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="memload_buffer_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_memload_buffer_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="memload_buffer_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="memload_buffer_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Buffers</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">memload_buffer_color_button</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="memload_cached_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_memload_cached_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="memload_cached_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="memload_cached_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Cach_ed</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">memload_cached_color_button</property> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="memload_free_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_memload_free_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="memload_free_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="memload_free_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">F_ree</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">memload_free_color_button</property> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">1</property> + </packing> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Memory</property> + </object> + <packing> + <property name="position">1</property> + <property name="tab-fill">False</property> + </packing> + </child> + <child> + <!-- n-columns=6 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="netload2_in_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_in_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_in_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_in_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_In</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_in_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="netload2_out_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_out_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_out_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_out_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Out</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_out_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="netload2_loopback_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_loopback_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_loopback_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_loopback_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Local</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_loopback_color_button</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="netload2_background_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_background_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_background_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_background_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Background</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_background_color_button</property> + </object> + <packing> + <property name="left-attach">3</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="netload2_gridline_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_gridline_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_gridline_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_gridline_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Gridline</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_gridline_color_button</property> + </object> + <packing> + <property name="left-attach">4</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="netload2_indicator_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_netload2_indicator_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="netload2_indicator_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">5</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="netload2_indicator_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Indicator</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">netload2_indicator_color_button</property> + </object> + <packing> + <property name="left-attach">5</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">2</property> + </packing> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Network</property> + </object> + <packing> + <property name="position">2</property> + <property name="tab-fill">False</property> + </packing> + </child> + <child> + <!-- n-columns=2 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="swapload_used_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_swapload_used_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="swapload_used_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="swapload_used_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Used</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">swapload_used_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="swapload_free_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_swapload_free_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="swapload_free_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="swapload_free_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Free</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">swapload_free_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">3</property> + </packing> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Swap Space</property> + </object> + <packing> + <property name="position">3</property> + <property name="tab-fill">False</property> + </packing> + </child> + <child> + <!-- n-columns=3 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="loadavg_average_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_loadavg_average_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="loadavg_average_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="loadavg_average_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Average</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">loadavg_average_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="loadavg_background_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_loadavg_background_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="loadavg_background_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="loadavg_background_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Background</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">loadavg_background_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="loadavg_gridline_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_loadavg_gridline_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="loadavg_gridline_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="loadavg_gridline_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Gridline</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">loadavg_gridline_color_button</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">4</property> + </packing> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Load</property> + </object> + <packing> + <property name="position">4</property> + <property name="tab-fill">False</property> + </packing> + </child> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="border-width">12</property> + <property name="orientation">vertical</property> + <property name="spacing">12</property> + <child> + <!-- n-columns=3 n-rows=2 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <property name="column-homogeneous">True</property> + <child> + <object class="GtkColorButton" id="diskload_read_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_diskload_read_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="diskload_read_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="diskload_read_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Read</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">diskload_read_color_button</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="diskload_write_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_diskload_write_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="diskload_write_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="diskload_write_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Write</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">diskload_write_color_button</property> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkColorButton" id="diskload_free_color_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="halign">center</property> + <signal name="color-set" handler="on_diskload_free_color_button_color_set" swapped="no"/> + <accessibility> + <relation type="labelled-by" target="diskload_free_color_button_label"/> + </accessibility> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="diskload_free_color_button_label"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">_Background</property> + <property name="use-underline">True</property> + <property name="mnemonic-widget">diskload_free_color_button</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="nvme_checkbox"> + <property name="label" translatable="yes">Use diskstats for _NVMe</property> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="receives-default">False</property> + <property name="halign">start</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> + <signal name="toggled" handler="on_nvme_checkbox_toggled" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">5</property> + </packing> + </child> + <child type="tab"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Harddisk</property> + </object> + <packing> + <property name="position">5</property> + <property name="tab-fill">False</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Colors</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label-xalign">0</property> + <property name="shadow-type">none</property> + <child> + <object class="GtkAlignment"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="left-padding">12</property> + <child> + <!-- n-columns=3 n-rows=3 --> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="margin-top">6</property> + <property name="row-spacing">6</property> + <property name="column-spacing">12</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">Threshold _1:</property> + <property name="use-underline">True</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="net_threshold1_spin_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="halign">start</property> + <property name="width-chars">10</property> + <property name="adjustment">net_threshold1_spin_button_adj</property> + <property name="numeric">True</property> + <property name="value">1000000</property> + <signal name="value-changed" handler="on_net_threshold1_spin_button_value_changed" swapped="no"/> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">bytes</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">0</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">Threshold _2:</property> + <property name="use-underline">True</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="net_threshold2_spin_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="halign">start</property> + <property name="width-chars">10</property> + <property name="adjustment">net_threshold2_spin_button_adj</property> + <property name="numeric">True</property> + <property name="value">10000000</property> + <signal name="value-changed" handler="on_net_threshold2_spin_button_value_changed" swapped="no"/> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">bytes</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">Threshold _3:</property> + <property name="use-underline">True</property> + </object> + <packing> + <property name="left-attach">0</property> + <property name="top-attach">2</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="net_threshold3_spin_button"> + <property name="visible">True</property> + <property name="can-focus">True</property> + <property name="halign">start</property> + <property name="width-chars">10</property> + <property name="adjustment">net_threshold3_spin_button_adj</property> + <property name="numeric">True</property> + <signal name="value-changed" handler="on_net_threshold3_spin_button_value_changed" swapped="no"/> + </object> + <packing> + <property name="left-attach">1</property> + <property name="top-attach">2</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="halign">start</property> + <property name="label" translatable="yes">bytes</property> + </object> + <packing> + <property name="left-attach">2</property> + <property name="top-attach">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can-focus">False</property> + <property name="label" translatable="yes">Network speed thresholds</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + </child> + <action-widgets> + <action-widget response="-11">help_button</action-widget> + <action-widget response="-7">close_button</action-widget> + </action-widgets> + </object> +</interface> diff --git a/multiload/docs/C/index.docbook b/multiload/docs/C/index.docbook index ecaf2ec5..8bfe2375 100644 --- a/multiload/docs/C/index.docbook +++ b/multiload/docs/C/index.docbook @@ -25,7 +25,7 @@ format in a panel.</para> </abstract> <copyright> - <year>2015-2020</year> + <year>2015-2021</year> <holder>MATE Documentation Project</holder> </copyright> <copyright> @@ -680,7 +680,7 @@ on network graph go from 0 to threshold1. When traffic is more than threshold1, one indicator will be shown and y-axis now go from 0 to threshold2. When threshold2 is reached, two indicators will be shown and y-axis go from 0 to threshold3. When threshold3 is reached, three indicators are shown and y-axis - go form 0 to whatever is current maximum in graph. + go from 0 to whatever is current maximum in graph. </para> <para> Gridlines are hard to explain, just observe, and they are obvious. diff --git a/multiload/docs/af/af.po b/multiload/docs/af/af.po index f6afb2fd..61b2274d 100644 --- a/multiload/docs/af/af.po +++ b/multiload/docs/af/af.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/am/am.po b/multiload/docs/am/am.po index 213d04ba..0caf24b9 100644 --- a/multiload/docs/am/am.po +++ b/multiload/docs/am/am.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: samson <[email protected]>, 2019\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ar/ar.po b/multiload/docs/ar/ar.po index a7339e0c..c5632ccc 100644 --- a/multiload/docs/ar/ar.po +++ b/multiload/docs/ar/ar.po @@ -5,14 +5,15 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # مهدي السطيفي <[email protected]>, 2018 # Ahmad Dakhlallah <[email protected]>, 2019 +# Ahmd go <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Ahmad Dakhlallah <[email protected]>, 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"Last-Translator: Ahmd go <[email protected]>, 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -105,7 +106,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:117 msgid "MATE Documentation Team" -msgstr "" +msgstr "فريق متّة التوثيقي " #. (itstool) path: revhistory/revision #: C/index.docbook:113 @@ -774,7 +775,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/as/as.po b/multiload/docs/as/as.po index a82e33d1..4be4dd46 100644 --- a/multiload/docs/as/as.po +++ b/multiload/docs/as/as.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ast/ast.po b/multiload/docs/ast/ast.po index 145c604b..6bcc33fb 100644 --- a/multiload/docs/ast/ast.po +++ b/multiload/docs/ast/ast.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/az/az.po b/multiload/docs/az/az.po index 04afcc7b..ef346248 100644 --- a/multiload/docs/az/az.po +++ b/multiload/docs/az/az.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -772,7 +772,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/be/be.po b/multiload/docs/be/be.po index 9ede4e9b..aeeae97f 100644 --- a/multiload/docs/be/be.po +++ b/multiload/docs/be/be.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Mihail Varantsou <[email protected]>, 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/bg/bg.po b/multiload/docs/bg/bg.po index b01620dc..6378689b 100644 --- a/multiload/docs/bg/bg.po +++ b/multiload/docs/bg/bg.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: H Bozhkov, 2020\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +45,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -779,7 +779,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/bn/bn.po b/multiload/docs/bn/bn.po index 9f2199b2..e000bceb 100644 --- a/multiload/docs/bn/bn.po +++ b/multiload/docs/bn/bn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -773,7 +773,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/bn_IN/bn_IN.po b/multiload/docs/bn_IN/bn_IN.po index a4e91942..6e4d5f3f 100644 --- a/multiload/docs/bn_IN/bn_IN.po +++ b/multiload/docs/bn_IN/bn_IN.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/br/br.po b/multiload/docs/br/br.po index c89efede..c3c6fb1b 100644 --- a/multiload/docs/br/br.po +++ b/multiload/docs/br/br.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Alan Monfort <[email protected]>, 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/bs/bs.po b/multiload/docs/bs/bs.po index 44c9f611..52da0db6 100644 --- a/multiload/docs/bs/bs.po +++ b/multiload/docs/bs/bs.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Sky Lion <[email protected]>, 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ca/ca.po b/multiload/docs/ca/ca.po index 4a1cad79..c1ca2ee1 100644 --- a/multiload/docs/ca/ca.po +++ b/multiload/docs/ca/ca.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Robert Antoni Buj Gelonch <[email protected]>, 2020\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"Last-Translator: Robert Antoni Buj i Gelonch <[email protected]>, 2021\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,9 +39,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecte de documentació de MATE</holder>" +"<year>2015-2021</year> <holder>Projecte de documentació de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -268,7 +268,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "Utilització de la memòria" #. (itstool) path: listitem/para #: C/index.docbook:219 @@ -278,7 +278,7 @@ msgstr "Trànsit de xarxa" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "Utilització de l'espai d'intercanvi" #. (itstool) path: listitem/para #: C/index.docbook:229 @@ -288,7 +288,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "Càrrega del disc" #. (itstool) path: sect2/title #: C/index.docbook:237 @@ -807,7 +807,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ca@valencia/[email protected] b/multiload/docs/ca@valencia/[email protected] index 2761bc6d..0bb28408 100644 --- a/multiload/docs/ca@valencia/[email protected] +++ b/multiload/docs/ca@valencia/[email protected] @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Empar Montoro <[email protected]>, 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -776,7 +776,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/cmn/cmn.po b/multiload/docs/cmn/cmn.po index 8c19ff31..dc04184d 100644 --- a/multiload/docs/cmn/cmn.po +++ b/multiload/docs/cmn/cmn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: 趙惟倫 <[email protected]>, 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/crh/crh.po b/multiload/docs/crh/crh.po index 083310e9..bd98f5e2 100644 --- a/multiload/docs/crh/crh.po +++ b/multiload/docs/crh/crh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/cs/cs.po b/multiload/docs/cs/cs.po index e0a78780..98003a9d 100644 --- a/multiload/docs/cs/cs.po +++ b/multiload/docs/cs/cs.po @@ -3,16 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # ToMáš Marný, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Roman Horník <[email protected]>, 2018 -# Lucas Lommer <[email protected]>, 2020 +# Roman Horník <[email protected]>, 2021 +# Lukáš Lommer <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Lucas Lommer <[email protected]>, 2020\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"Last-Translator: Lukáš Lommer <[email protected]>, 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,8 +49,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Dokumentační projekt MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projekt dokumentace MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -788,7 +788,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -888,3 +888,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU " +"FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <_:orderedlist-1/>" diff --git a/multiload/docs/cy/cy.po b/multiload/docs/cy/cy.po index 5a877846..9b7eb3d9 100644 --- a/multiload/docs/cy/cy.po +++ b/multiload/docs/cy/cy.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: ciaran, 2018\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/da/da.po b/multiload/docs/da/da.po index 109fc8a7..89af6c72 100644 --- a/multiload/docs/da/da.po +++ b/multiload/docs/da/da.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Joe Hansen <[email protected]>, 2020 +# Joe Hansen <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Joe Hansen <[email protected]>, 2020\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Last-Translator: Joe Hansen <[email protected]>, 2021\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,10 +20,10 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen <[email protected]>\\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen <[email protected]>\n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:22 @@ -41,8 +41,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE-dokumentationsprojektet</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -853,7 +853,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" "Tærskler sammen med indikator gør det muligt for netværksgrafer at skalere " diff --git a/multiload/docs/de/de.po b/multiload/docs/de/de.po index 388bd19a..102901d1 100644 --- a/multiload/docs/de/de.po +++ b/multiload/docs/de/de.po @@ -6,16 +6,16 @@ # Tobias Bannert <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Julian Rüger <[email protected]>, 2018 -# Marcel Artz <[email protected]>, 2019 -# Michael Hartmann, 2020 +# Marcel Artz, 2019 +# Xpistian <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Michael Hartmann, 2020\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"Last-Translator: Xpistian <[email protected]>, 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,8 +48,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentations Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Mate-Dokumentationsprojekt</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -789,7 +789,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/dz/dz.po b/multiload/docs/dz/dz.po index 156bbb30..45575339 100644 --- a/multiload/docs/dz/dz.po +++ b/multiload/docs/dz/dz.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/el/el.po b/multiload/docs/el/el.po index a34045f5..06a76c1e 100644 --- a/multiload/docs/el/el.po +++ b/multiload/docs/el/el.po @@ -6,14 +6,15 @@ # kosmmart <[email protected]>, 2018 # TheDimitris15, 2019 # anvo <[email protected]>, 2019 +# Chris Balabanis, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: anvo <[email protected]>, 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"Last-Translator: Chris Balabanis, 2023\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,8 +44,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Έργο Τεκμηρίωσης MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -779,7 +780,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/en_AU/en_AU.po b/multiload/docs/en_AU/en_AU.po index 4a2abdb6..e90a06e2 100644 --- a/multiload/docs/en_AU/en_AU.po +++ b/multiload/docs/en_AU/en_AU.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Michael Findlay <[email protected]>, 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/en_CA/en_CA.po b/multiload/docs/en_CA/en_CA.po index ae6f7a0c..767e3067 100644 --- a/multiload/docs/en_CA/en_CA.po +++ b/multiload/docs/en_CA/en_CA.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/en_GB/en_GB.po b/multiload/docs/en_GB/en_GB.po index 330f1a8f..7c823c5e 100644 --- a/multiload/docs/en_GB/en_GB.po +++ b/multiload/docs/en_GB/en_GB.po @@ -1,16 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Martin Wimpress <[email protected]>, 2018 -# Andi Chandler <[email protected]>, 2020 +# Andi Chandler <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Andi Chandler <[email protected]>, 2020\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"Last-Translator: Andi Chandler <[email protected]>, 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ msgstr "" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "" +msgstr "System Monitor Manual" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -33,11 +34,13 @@ msgid "" "System Monitor displays system load information in graphical format in a " "panel." msgstr "" +"System Monitor displays system load information in graphical format in a " +"panel." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -52,7 +55,7 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -83,6 +86,9 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -91,6 +97,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -114,6 +123,8 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 @@ -126,11 +137,13 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -138,11 +151,13 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.8</revnumber> <date>August 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME Documentation Team" #. (itstool) path: revhistory/revision #: C/index.docbook:139 @@ -150,11 +165,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Chee Bin HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -162,11 +179,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " +"2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." -msgstr "" +msgstr "This manual describes version 1.10.2 of System Monitor." #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -180,16 +199,19 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"To report a bug or make a suggestion regarding the System Monitor applet or " +"this manual, follow the directions in the <ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>System Monitor Applet</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>System Monitor</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -212,6 +234,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -220,6 +244,9 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " +"Displays a graph for system CPU load. </phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -229,41 +256,45 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" +"The <application>System Monitor</application> displays system load " +"information in graphical format in a panel. You can configure " +"<application>System Monitor</application> to display the following " +"information for your system:" #. (itstool) path: listitem/para #: C/index.docbook:209 msgid "Usage of CPU (central processing unit) time" -msgstr "" +msgstr "Usage of CPU (central processing unit) time" #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "Memory usage" #. (itstool) path: listitem/para #: C/index.docbook:219 msgid "Network traffic" -msgstr "" +msgstr "Network traffic" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "Usage of swap space" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Average system load" -msgstr "" +msgstr "Average system load" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "Disk load" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "" +msgstr "To Add System Monitor to a Panel" #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -271,11 +302,13 @@ msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" msgstr "" +"To add <application>System Monitor</application> to a panel, perform the " +"following steps:" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "Right-click on the panel." #. (itstool) path: listitem/para #: C/index.docbook:249 @@ -288,6 +321,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialogue, then select <guilabel>System Monitor</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:260 @@ -300,16 +335,18 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" +"The layout of the <application>System Monitor</application> varies depending" +" on the size and type of panel in which the applet resides." #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "" +msgstr "Viewing Graphs" #. (itstool) path: sect2/title #: C/index.docbook:280 msgid "Displaying Additional Graphs" -msgstr "" +msgstr "Displaying Additional Graphs" #. (itstool) path: sect2/para #: C/index.docbook:281 @@ -319,71 +356,75 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" +"To configure the <application>System Monitor</application> applet, right-" +"click on the applet, then choose <guimenuitem>Preferences</guimenuitem>. " +"Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" +" you want to display:" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 msgid "<guilabel>Processor</guilabel>" -msgstr "" +msgstr "<guilabel>Processor</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:287 msgid "Select this option to display the graph for CPU usage." -msgstr "" +msgstr "Select this option to display the graph for CPU usage." #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 msgid "<guilabel>Memory</guilabel>" -msgstr "" +msgstr "<guilabel>Memory</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Select this option to display the graph for memory usage." -msgstr "" +msgstr "Select this option to display the graph for memory usage." #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>Network</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." -msgstr "" +msgstr "Select this option to display the graph for network traffic." #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 msgid "<guilabel>Swap Space</guilabel>" -msgstr "" +msgstr "<guilabel>Swap Space</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:311 msgid "Select this option to display the graph for swap-space usage." -msgstr "" +msgstr "Select this option to display the graph for swap-space usage." #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>Load</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 msgid "Select this option to display the graph for average system load." -msgstr "" +msgstr "Select this option to display the graph for average system load." #. (itstool) path: listitem/para #: C/index.docbook:324 C/index.docbook:637 msgid "<guilabel>Harddisk</guilabel>" -msgstr "" +msgstr "<guilabel>Harddisk</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:325 msgid "Select this option to display the graph for disk usage." -msgstr "" +msgstr "Select this option to display the graph for disk usage." #. (itstool) path: sect2/title #: C/index.docbook:333 msgid "To Display the Current Usage of a System Resource" -msgstr "" +msgstr "To Display the Current Usage of a System Resource" #. (itstool) path: sect2/para #: C/index.docbook:334 @@ -392,11 +433,14 @@ msgid "" "pointer over the corresponding graph in the applet. A tooltip displays the " "current usage as a percentage." msgstr "" +"To display the current usage of a system resource, position the mouse " +"pointer over the corresponding graph in the applet. A tooltip displays the " +"current usage as a percentage." #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "" +msgstr "To Display Additional System Monitor Information" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -405,6 +449,9 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" +"To display additional system monitor information, right-click on the applet," +" then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " +"<application>System Monitor</application> application." #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -414,16 +461,20 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" +"The <application>System Monitor</application> application enables you to " +"monitor system processes and usage of system resources. You can use the " +"<application>System Monitor</application> application to modify the behavior" +" of your system." #. (itstool) path: sect1/title #: C/index.docbook:360 msgid "Customizing Appearance" -msgstr "" +msgstr "Customizing Appearance" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "" +msgstr "Preferences Dialogue" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -436,6 +487,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -444,11 +497,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " +"</phrase> </textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 msgid "To Change the Width" -msgstr "" +msgstr "To Change the Width" #. (itstool) path: sect2/para #: C/index.docbook:377 @@ -458,11 +514,15 @@ msgid "" "width</guilabel> spin box to specify the width of each <application>System " "Monitor</application> graph in pixels." msgstr "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor " +"width</guilabel> spin box to specify the width of each <application>System " +"Monitor</application> graph in pixels." #. (itstool) path: sect2/title #: C/index.docbook:380 msgid "To Update at Regular Intervals" -msgstr "" +msgstr "To Update at Regular Intervals" #. (itstool) path: sect2/para #: C/index.docbook:381 @@ -472,16 +532,20 @@ msgid "" "interval</guilabel> spin box to specify the interval at which you want to " "update the graphs in milliseconds." msgstr "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor update " +"interval</guilabel> spin box to specify the interval at which you want to " +"update the graphs in milliseconds." #. (itstool) path: sect2/title #: C/index.docbook:386 msgid "Changing the Colors in a Graph" -msgstr "" +msgstr "Changing the Colours in a Graph" #. (itstool) path: sect2/para #: C/index.docbook:387 msgid "To change the colors in a graph, perform the following steps:" -msgstr "" +msgstr "To change the colours in a graph, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:392 @@ -489,6 +553,8 @@ msgid "" "Right-click on the applet, then choose " "<guimenuitem>Preferences</guimenuitem>." msgstr "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:397 @@ -496,12 +562,15 @@ msgid "" "Select the relevant tab in the <guilabel>Colors</guilabel> area of the " "<guilabel>System Monitor Preferences</guilabel> dialog." msgstr "" +"Select the relevant tab in the <guilabel>Colours</guilabel> area of the " +"<guilabel>System Monitor Preferences</guilabel> dialogue." #. (itstool) path: listitem/para #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." msgstr "" +"Click on the relevant colour selector button in the selected tabbed section." #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -509,11 +578,13 @@ msgid "" "On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" " boxes to choose the line color for the selected parameter." msgstr "" +"On the <guilabel>Pick a Colour</guilabel> dialogue, use the colour wheel or " +"spin boxes to choose the line colour for the selected parameter." #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Click <guibutton>OK</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -521,6 +592,8 @@ msgid "" "The tabbed section for each resource provides color selection buttons that " "you can use to change the color of the parameters for each resource." msgstr "" +"The tabbed section for each resource provides colour selection buttons that " +"you can use to change the colour of the parameters for each resource." #. (itstool) path: listitem/para #: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 @@ -528,12 +601,13 @@ msgstr "" msgid "" "Select this tab to display the color buttons for the following parameters:" msgstr "" +"Select this tab to display the color buttons for the following parameters:" #. (itstool) path: entry/para #: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 #: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 msgid "Parameter" -msgstr "" +msgstr "Parameter" #. (itstool) path: entry/para #: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 @@ -544,227 +618,227 @@ msgstr "Description" #. (itstool) path: entry/para #: C/index.docbook:446 C/index.docbook:492 msgid "<guilabel>User</guilabel>" -msgstr "" +msgstr "<guilabel>User</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:447 msgid "Processor time used by non-kernel activities" -msgstr "" +msgstr "Processor time used by non-kernel activities" #. (itstool) path: entry/para #: C/index.docbook:450 msgid "<guilabel>System</guilabel>" -msgstr "" +msgstr "<guilabel>System</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 msgid "Processor time used by kernel activities" -msgstr "" +msgstr "Processor time used by kernel activities" #. (itstool) path: entry/para #: C/index.docbook:454 msgid "<guilabel>Nice</guilabel>" -msgstr "" +msgstr "<guilabel>Nice</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:455 msgid "Processor time used by low-priority processes" -msgstr "" +msgstr "Processor time used by low-priority processes" #. (itstool) path: entry/para #: C/index.docbook:458 msgid "<guilabel>IOWait</guilabel>" -msgstr "" +msgstr "<guilabel>IOWait</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:460 msgid "Processor time used waiting for I/O" -msgstr "" +msgstr "Processor time used waiting for I/O" #. (itstool) path: entry/para #: C/index.docbook:464 msgid "<guilabel>Idle</guilabel>" -msgstr "" +msgstr "<guilabel>Idle</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:465 msgid "Unused processor capacity" -msgstr "" +msgstr "Unused processor capacity" #. (itstool) path: entry/para #: C/index.docbook:493 msgid "Memory used by non-kernel activities" -msgstr "" +msgstr "Memory used by non-kernel activities" #. (itstool) path: entry/para #: C/index.docbook:496 msgid "<guilabel>Shared</guilabel>" -msgstr "" +msgstr "<guilabel>Shared</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:497 msgid "Memory used by more than one application" -msgstr "" +msgstr "Memory used by more than one application" #. (itstool) path: entry/para #: C/index.docbook:500 msgid "<guilabel>Buffers</guilabel>" -msgstr "" +msgstr "<guilabel>Buffers</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" -msgstr "" +msgstr "Memory used to temporarily store sent or received data" #. (itstool) path: entry/para #: C/index.docbook:504 msgid "<guilabel>Cached</guilabel>" -msgstr "" +msgstr "<guilabel>Cached</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "" +msgstr "Memory used to store data for fast access" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 msgid "<guilabel>Free</guilabel>" -msgstr "" +msgstr "<guilabel>Free</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "" +msgstr "Memory not currently in use" #. (itstool) path: entry/para #: C/index.docbook:536 msgid "<guilabel>In</guilabel>" -msgstr "" +msgstr "<guilabel>In</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:537 msgid "Incoming traffic" -msgstr "" +msgstr "Incoming traffic" #. (itstool) path: entry/para #: C/index.docbook:540 msgid "<guilabel>Out</guilabel>" -msgstr "" +msgstr "<guilabel>Out</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:541 msgid "Outgoing traffic" -msgstr "" +msgstr "Outgoing traffic" #. (itstool) path: entry/para #: C/index.docbook:544 msgid "<guilabel>Local</guilabel>" -msgstr "" +msgstr "<guilabel>Local</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:545 msgid "Traffic over loopback" -msgstr "" +msgstr "Traffic over loopback" #. (itstool) path: entry/para #: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 msgid "<guilabel>Background</guilabel>" -msgstr "" +msgstr "<guilabel>Background</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "" +msgstr "Graph background colour" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "" +msgstr "<guilabel>Gridline</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "" +msgstr "Color of horizontal gridline when scaling graph" #. (itstool) path: entry/para #: C/index.docbook:556 msgid "<guilabel>Indicator</guilabel>" -msgstr "" +msgstr "<guilabel>Indicator</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:557 msgid "Color of indicator showing which threshold was reached" -msgstr "" +msgstr "Colour of indicator showing which threshold was reached" #. (itstool) path: entry/para #: C/index.docbook:585 msgid "<guilabel>Used</guilabel>" -msgstr "" +msgstr "<guilabel>Used</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:587 msgid "Swap space being used by the system" -msgstr "" +msgstr "Swap space being used by the system" #. (itstool) path: entry/para #: C/index.docbook:593 msgid "Swap space that is free to be used" -msgstr "" +msgstr "Swap space that is free to be used" #. (itstool) path: entry/para #: C/index.docbook:621 msgid "<guilabel>Average</guilabel>" -msgstr "" +msgstr "<guilabel>Average</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:622 msgid "System Load" -msgstr "" +msgstr "System Load" #. (itstool) path: entry/para #: C/index.docbook:626 msgid "that is, no load" -msgstr "" +msgstr "that is, no load" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "" +msgstr "<guilabel>Grid line</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 msgid "Color of grid lines" -msgstr "" +msgstr "Colour of grid lines" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>Read</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 msgid "Disk read rate" -msgstr "" +msgstr "Disk read rate" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>Write</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 msgid "Disk write rate" -msgstr "" +msgstr "Disk write rate" #. (itstool) path: entry/para #: C/index.docbook:666 msgid "Idle disk time" -msgstr "" +msgstr "Idle disk time" #. (itstool) path: sect2/title #: C/index.docbook:676 msgid "Network speed thresholds" -msgstr "" +msgstr "Network speed thresholds" #. (itstool) path: sect2/para #: C/index.docbook:677 @@ -775,14 +849,22 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" +"Thresholds together with indicator allow network graph to scale and better " +"represent actual workload. If combined network traffic (in + out + loopback)" +" is below threshold1, no indicator is shown, y-axis on network graph go from" +" 0 to threshold1. When traffic is more than threshold1, one indicator will " +"be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," +" two indicators will be shown and y-axis go from 0 to threshold3. When " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " +"whatever is current maximum in graph." #. (itstool) path: sect2/para #: C/index.docbook:685 msgid "Gridlines are hard to explain, just observe, and they are obvious." -msgstr "" +msgstr "Gridlines are hard to explain, just observe, and they are obvious." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/multiload/docs/eo/eo.po b/multiload/docs/eo/eo.po index 5a445b49..9dacabb5 100644 --- a/multiload/docs/eo/eo.po +++ b/multiload/docs/eo/eo.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -44,7 +44,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -778,7 +778,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/es/es.po b/multiload/docs/es/es.po index ef0bdad5..b813df1d 100644 --- a/multiload/docs/es/es.po +++ b/multiload/docs/es/es.po @@ -1,24 +1,25 @@ # # Translators: -# seacat <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 # elio <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Joel Barrios <[email protected]>, 2018 -# Toni Estévez <[email protected]>, 2020 +# seacat <[email protected]>, 2021 +# Adolfo Jayme-Barrientos, 2021 +# Toni Estévez <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Toni Estévez <[email protected]>, 2020\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Last-Translator: Toni Estévez <[email protected]>, 2021\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -43,9 +44,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proyecto de documentación de MATE</holder>" +"<year>2015-2021</year> <holder>Proyecto de documentación de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -134,11 +135,13 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Versión 2.10</revnumber> <date>Marzo de 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -433,7 +436,7 @@ msgstr "" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "" +msgstr "Cuadro de diálogo Preferencias" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -525,7 +528,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Haga clic en <guibutton>OK</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -787,7 +790,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -840,9 +843,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." diff --git a/multiload/docs/es_AR/es_AR.po b/multiload/docs/es_AR/es_AR.po index d80843c1..fd45098e 100644 --- a/multiload/docs/es_AR/es_AR.po +++ b/multiload/docs/es_AR/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Dario Badagnani <[email protected]>, 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -772,7 +772,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/es_CL/es_CL.po b/multiload/docs/es_CL/es_CL.po index ad391802..99cb3828 100644 --- a/multiload/docs/es_CL/es_CL.po +++ b/multiload/docs/es_CL/es_CL.po @@ -1,21 +1,21 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# prflr88 <[email protected]>, 2018 +# Pablo Lezaeta Reyes <[email protected]>, 2018 # Robert Petitpas <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Robert Petitpas <[email protected]>, 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/es_CO/es_CO.po b/multiload/docs/es_CO/es_CO.po index 9facec21..bb978fd6 100644 --- a/multiload/docs/es_CO/es_CO.po +++ b/multiload/docs/es_CO/es_CO.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Daniel Aranda <[email protected]>, 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/es_ES/es_ES.po b/multiload/docs/es_ES/es_ES.po index 87ef4944..3c131b5a 100644 --- a/multiload/docs/es_ES/es_ES.po +++ b/multiload/docs/es_ES/es_ES.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Mario Verdin <[email protected]>, 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/et/et.po b/multiload/docs/et/et.po index 3e622249..308e2347 100644 --- a/multiload/docs/et/et.po +++ b/multiload/docs/et/et.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Mattias Põldaru <[email protected]>, 2019\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -41,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -775,7 +775,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/eu/eu.po b/multiload/docs/eu/eu.po index 7b20182c..d8f61aaa 100644 --- a/multiload/docs/eu/eu.po +++ b/multiload/docs/eu/eu.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Alexander Gabilondo <[email protected]>, 2020\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -773,7 +773,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/fa/fa.po b/multiload/docs/fa/fa.po index f6664b1f..2f838102 100644 --- a/multiload/docs/fa/fa.po +++ b/multiload/docs/fa/fa.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Borderliner <[email protected]>, 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/fi/fi.po b/multiload/docs/fi/fi.po index 8243142a..94f596c2 100644 --- a/multiload/docs/fi/fi.po +++ b/multiload/docs/fi/fi.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Kimmo Kujansuu <[email protected]>, 2019\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -44,7 +44,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -778,7 +778,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/fr/fr.po b/multiload/docs/fr/fr.po index 1075da71..41d1416b 100644 --- a/multiload/docs/fr/fr.po +++ b/multiload/docs/fr/fr.po @@ -3,28 +3,27 @@ # Stefano Karapetsas <[email protected]>, 2018 # Charles Monzat <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Xorg, 2018 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 # Aestan <[email protected]>, 2018 # Guillaume Fayard <[email protected]>, 2018 # Laurent Napias <[email protected]>, 2018 # Étienne Deparis <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Stéphane PETRUS <[email protected]>, 2019 -# Laurent Napias, 2020 # Jerom Turible <[email protected]>, 2020 +# Tubuntu, 2020 +# Stéphane PETRUS <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Jerom Turible <[email protected]>, 2020\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Last-Translator: Stéphane PETRUS <[email protected]>, 2021\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -59,8 +58,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projet de documentation MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projet de documentation MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -149,6 +148,8 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.10</revnumber> <date>mars 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 @@ -798,7 +799,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -822,13 +823,14 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Permission vous est donnée de copier, distribuer et/ou modifier ce document " -"selon les termes de la Licence GNU Free Documentation License, Version 1.1 " -"ou ultérieure publiée par la Free Software Foundation sans section " -"inaltérable, sans texte de première page de couverture ni texte de dernière " -"page de couverture. Vous trouverez un exemplaire de cette licence en suivant" -" ce <_:ulink-1/> ou dans le fichier COPYING-DOCS fourni avec le présent " -"manuel." +"Permission est accordée de copier, distribuer et/ou modifier ce document " +"selon les termes de la Licence GNU de documentation libre (GFDL), Version " +"1.1 ou ultérieure publiée par la Free Software Foundation sans section " +"inaltérable, sans texte de première page ni de dernière page de couverture. " +"Vous trouverez une copie (en anglais) de la GFDL en suivant ce <ulink " +"type=\"help\" url=\"https://www.gnu.org/licenses/old-" +"licenses/fdl-1.1.html\">lien</ulink> ou dans le fichier COPYING-DOCS fourni " +"avec le présent manuel." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/multiload/docs/fur/fur.po b/multiload/docs/fur/fur.po index dab5984d..256b44a3 100644 --- a/multiload/docs/fur/fur.po +++ b/multiload/docs/fur/fur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/fy/fy.po b/multiload/docs/fy/fy.po index a28a08ec..4f83b053 100644 --- a/multiload/docs/fy/fy.po +++ b/multiload/docs/fy/fy.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ga/ga.po b/multiload/docs/ga/ga.po index eaabfd3a..184a7727 100644 --- a/multiload/docs/ga/ga.po +++ b/multiload/docs/ga/ga.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/gl/gl.po b/multiload/docs/gl/gl.po index 8b2f6a77..7a4ab2ed 100644 --- a/multiload/docs/gl/gl.po +++ b/multiload/docs/gl/gl.po @@ -2,16 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Miguel Anxo Bouzada <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 +# Miguel Anxo Bouzada <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2020\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,9 +39,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proxecto de documentación do MATE</holder>" +"<year>2015-2021</year> <holder>Proxecto de documentación do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -791,7 +791,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/gu/gu.po b/multiload/docs/gu/gu.po index 6ced4807..e4c234fc 100644 --- a/multiload/docs/gu/gu.po +++ b/multiload/docs/gu/gu.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Milan Savaliya <[email protected]>, 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ha/ha.po b/multiload/docs/ha/ha.po index 552ba9c5..3b9b6a4c 100644 --- a/multiload/docs/ha/ha.po +++ b/multiload/docs/ha/ha.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/he/he.po b/multiload/docs/he/he.po index 691ddc5c..7de8963d 100644 --- a/multiload/docs/he/he.po +++ b/multiload/docs/he/he.po @@ -3,20 +3,20 @@ # Stefano Karapetsas <[email protected]>, 2018 # Yaron Shahrabani <[email protected]>, 2020 # shy tzedaka <[email protected]>, 2020 -# Omer, 2020 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Omer, 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2021\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,8 +37,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2019-2020</year> <holder>מיזם התיעוד של MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -195,7 +195,7 @@ msgstr "היכרות" #. (itstool) path: figure/title #: C/index.docbook:186 msgid "System Monitor" -msgstr "מנטר המערכת" +msgstr "צג המערכת" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -276,7 +276,7 @@ msgstr "קליק ימני על הלוח." #. (itstool) path: listitem/para #: C/index.docbook:249 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "בחירת ב<guimenuitem>הוספה ללוח</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -288,7 +288,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "לחיצה על <guibutton>הוספה</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/hi/hi.po b/multiload/docs/hi/hi.po index 714cb283..562887eb 100644 --- a/multiload/docs/hi/hi.po +++ b/multiload/docs/hi/hi.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Panwar108 <[email protected]>, 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -774,7 +774,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/hr/hr.po b/multiload/docs/hr/hr.po index 3ab1bfec..32653878 100644 --- a/multiload/docs/hr/hr.po +++ b/multiload/docs/hr/hr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Radovan Gundulić <[email protected]>, 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -60,8 +60,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijski projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -809,7 +809,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/hu/hu.po b/multiload/docs/hu/hu.po index 9602a13b..dfa6d010 100644 --- a/multiload/docs/hu/hu.po +++ b/multiload/docs/hu/hu.po @@ -3,18 +3,17 @@ # Stefano Karapetsas <[email protected]>, 2018 # Falu <[email protected]>, 2018 # Balázs Meskó <[email protected]>, 2018 -# KAMI KAMI <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2019 # Csaba Székely <[email protected]>, 2019 -# Szabó Máté <[email protected]>, 2020 +# KAMI KAMI <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Szabó Máté <[email protected]>, 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"Last-Translator: KAMI KAMI <[email protected]>, 2022\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,8 +47,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentációs Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -199,7 +198,7 @@ msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>Rendszerfigyelő</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -785,7 +784,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/hy/hy.po b/multiload/docs/hy/hy.po index 79aadc9a..9d412433 100644 --- a/multiload/docs/hy/hy.po +++ b/multiload/docs/hy/hy.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Avag Sayan <[email protected]>, 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/id/id.po b/multiload/docs/id/id.po index 340b5b2e..49af8c30 100644 --- a/multiload/docs/id/id.po +++ b/multiload/docs/id/id.po @@ -2,17 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Kukuh Syafaat <[email protected]>, 2018 # Chotibul Studio <[email protected]>, 2020 -# Andika Triwidada <[email protected]>, 2020 +# Andika Triwidada <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Andika Triwidada <[email protected]>, 2020\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"Last-Translator: Andika Triwidada <[email protected]>, 2021\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,12 +26,13 @@ msgstr "" "Ahmad Riza H Nst <[email protected]>\n" "Dirgita <[email protected]>\n" "Tim MATE Indonesia <http://id.mate.org>\n" -"Kukuh Syafaat <[email protected]>, 2017." +"Kukuh Syafaat <[email protected]>, 2017.\n" +"Andika Triwidada <[email protected]>, 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "" +msgstr "Manual Pemantau Sistem" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -40,16 +40,18 @@ msgid "" "System Monitor displays system load information in graphical format in a " "panel." msgstr "" +"Pemantau Sistem menampilkan informasi beban sistem dalam format grafis dalam" +" suatu panel." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 msgid "<year>2005</year> <holder>Davyd Madeley</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:35 @@ -59,7 +61,7 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -80,6 +82,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Tim Dokumentasi MATE </firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -88,6 +92,9 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -96,6 +103,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>Projek Dokumentasi GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -104,6 +114,9 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:117 @@ -116,11 +129,13 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Pemantau Sistem V2.12</revnumber> <date>Juli 2015</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:122 @@ -128,11 +143,13 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Versi 2.10</revnumber> <date>Maret 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -140,6 +157,8 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Versi 2.8</revnumber> <date>Agustus 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 @@ -152,11 +171,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manual Aplet Pemantau Sistem V2.1</revnumber> <date>Februari " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Chee Bin HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -164,11 +185,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manual Aplet Pemantau Sistem V2.0</revnumber> <date>Juli " +"2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." -msgstr "" +msgstr "Manual ini menjelaskan versi 1.10.2 dari Pemantau Sistem." #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -182,16 +205,19 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"Untuk melaporkan bug atau membuat saran mengenai aplet Pemantau Sistem atau " +"manual ini, ikuti petunjuk di <ulink url=\"help:mate-user-guide/feedback\" " +"type=\"help\">Halaman Umpan Balik MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>Aplet Pemantau Sistem</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>Pemantau Sistem</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -214,6 +240,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -222,6 +250,10 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/></imageobject><textobject><phrase>Menunjukkan Pemantau " +"Sistem. Menampilkan suatu grafik bagi beban CPU " +"sistem.</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -231,41 +263,45 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" +"<application>Pemantau Sistem</application> menampilkan informasi beban " +"sistem dalam format grafis pada suatu panel. Anda dapat mengonfigurasi " +"<application>Pemantau Sistem</application> untuk menampilkan informasi " +"berikut bagi sistem Anda:" #. (itstool) path: listitem/para #: C/index.docbook:209 msgid "Usage of CPU (central processing unit) time" -msgstr "" +msgstr "Penggunaan waktu CPU (central processing unit) " #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "Penggunaan memori" #. (itstool) path: listitem/para #: C/index.docbook:219 msgid "Network traffic" -msgstr "" +msgstr "Trafik jaringan" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "Penggunaan ruang swap" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Average system load" -msgstr "" +msgstr "Beban sistem rata-rata" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "Beban disk" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "" +msgstr "Untuk Menambahkan Pemantau Sistem ke sebuah Panel" #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -273,16 +309,18 @@ msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" msgstr "" +"Untuk menambahkan <application>Pemantau Sistem</application> ke suatu panel," +" lakukan langkah-langkah berikut:" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "Klik kanan pada panel." #. (itstool) path: listitem/para #: C/index.docbook:249 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Pilih <guimenuitem>Tambah ke Panel</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -290,11 +328,13 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" +"Gulir turun daftar butir dalam dialog <guilabel>Tambah ke Panel</guilabel>, " +"lalu pilih <guilabel>Pemantau Sistem</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klik <guibutton>Tambah</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -302,16 +342,18 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" +"Tata letak <application>Pemantau Sistem</application> bervariasi bergantung " +"pada ukuran dan tipe panel tempat bertenggernya aplet." #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "" +msgstr "Melihat Grafik" #. (itstool) path: sect2/title #: C/index.docbook:280 msgid "Displaying Additional Graphs" -msgstr "" +msgstr "Menampilkan Grafik-grafik Tambahan" #. (itstool) path: sect2/para #: C/index.docbook:281 @@ -321,71 +363,75 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" +"Untuk mengonfigurasi aplet <application>Pemantau Sistem</application>, klik " +"kanan pada aplet, lalu pilih <guimenuitem>Preferensi</guimenuitem>. Di " +"bawah<guilabel>Sumber Daya yang Dipantau</guilabel> Anda dapat memilih " +"grafik mana yang ingin Anda tampilkan:" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 msgid "<guilabel>Processor</guilabel>" -msgstr "" +msgstr "<guilabel>Prosesor</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:287 msgid "Select this option to display the graph for CPU usage." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik bagi penggunaan CPU." #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 msgid "<guilabel>Memory</guilabel>" -msgstr "" +msgstr "<guilabel>Memori</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Select this option to display the graph for memory usage." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik bagi penggunaan memori." #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>Jaringan</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik bagi trafik jaringan." #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 msgid "<guilabel>Swap Space</guilabel>" -msgstr "" +msgstr "<guilabel>Ruang Swap</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:311 msgid "Select this option to display the graph for swap-space usage." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik bagi penggunaan ruang swap." #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>Beban</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 msgid "Select this option to display the graph for average system load." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik beban sistem rata-rata." #. (itstool) path: listitem/para #: C/index.docbook:324 C/index.docbook:637 msgid "<guilabel>Harddisk</guilabel>" -msgstr "" +msgstr "<guilabel>Harddisk</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:325 msgid "Select this option to display the graph for disk usage." -msgstr "" +msgstr "Pilih opsi ini untuk menampilkan grafik bagi penggunaan disk." #. (itstool) path: sect2/title #: C/index.docbook:333 msgid "To Display the Current Usage of a System Resource" -msgstr "" +msgstr "Untuk Menampilkan Pemakaian Saat Ini dari suatu Sumber Daya Sistem" #. (itstool) path: sect2/para #: C/index.docbook:334 @@ -394,11 +440,14 @@ msgid "" "pointer over the corresponding graph in the applet. A tooltip displays the " "current usage as a percentage." msgstr "" +"Untuk menampilkan penggunaan saat ini dari suatu sumber daya sistem, " +"posisikan penunjuk tetikus di atas grafik yang terkait dalam aplet. Suatu " +"tooltip menampilkan penggunaan saat ini sebagai suatu persentase." #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "" +msgstr "Untuk Menampilkan Informasi Pemantauan Sistem Tambahan" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -407,6 +456,9 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" +"Untuk menampilkan informasi pemantauan sistem tambahan, klik kanan pada " +"aplet, lalu pilih <guimenuitem>Buka Pemantau Sistem</guimenuitem> untuk " +"memulai aplikasi <application>Pemantau Sistem</application>." #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -416,16 +468,20 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" +"Aplikasi <application>Pemantau Sistem</application> memungkinkan Anda " +"memantau proses-proses sistem dan penggunaan sumber daya sistem. Anda dapat " +"memakai aplikasi <application>Pemantau Sistem</application> untuk mengubah " +"perilaku sistem Anda." #. (itstool) path: sect1/title #: C/index.docbook:360 msgid "Customizing Appearance" -msgstr "" +msgstr "Menyesuaikan Penampilan" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "" +msgstr "Dialog Preferensi" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -438,6 +494,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -446,11 +504,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/></imageobject><textobject><phrase>Dialog " +"Preferensi</phrase></textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 msgid "To Change the Width" -msgstr "" +msgstr "Untuk Mengubah Lebar" #. (itstool) path: sect2/para #: C/index.docbook:377 @@ -460,11 +521,15 @@ msgid "" "width</guilabel> spin box to specify the width of each <application>System " "Monitor</application> graph in pixels." msgstr "" +"Dalam menu klik kanan, pergilah ke <guimenuitem>Preferensi</guimenuitem>. Di" +" bawah <guilabel>Opsi</guilabel>, gunakan kotak puntir <guilabel>Lebar " +"pemantau sistem</guilabel> untuk menyatakan lebar dari setiap grafik " +"<application>Pemantau Sistem</application> dalam piksel." #. (itstool) path: sect2/title #: C/index.docbook:380 msgid "To Update at Regular Intervals" -msgstr "" +msgstr "Untuk Memperbarui pada Selang Waktu Reguler" #. (itstool) path: sect2/para #: C/index.docbook:381 @@ -474,16 +539,20 @@ msgid "" "interval</guilabel> spin box to specify the interval at which you want to " "update the graphs in milliseconds." msgstr "" +"Dalam menu klik kanan, pergilah ke <guimenuitem>Preferensi</guimenuitem>. Di" +" bawah <guilabel>Opsi</guilabel>, gunakan kotak puntir <guilabel>Selang " +"waktu pembaruan pemantau sistem</guilabel> untuk menyatakan selang waktu " +"yang Anda inginkan untuk memperbarui grafik-grafik dalam mili detik." #. (itstool) path: sect2/title #: C/index.docbook:386 msgid "Changing the Colors in a Graph" -msgstr "" +msgstr "Mengubah Warna dalam suatu Grafik" #. (itstool) path: sect2/para #: C/index.docbook:387 msgid "To change the colors in a graph, perform the following steps:" -msgstr "" +msgstr "Untuk mengubah warna dalam suatu grafik, lakukan langkah berikut:" #. (itstool) path: listitem/para #: C/index.docbook:392 @@ -491,6 +560,7 @@ msgid "" "Right-click on the applet, then choose " "<guimenuitem>Preferences</guimenuitem>." msgstr "" +"Klik kanan pada aplet, lalu pilih <guimenuitem>Preferensi</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:397 @@ -498,12 +568,16 @@ msgid "" "Select the relevant tab in the <guilabel>Colors</guilabel> area of the " "<guilabel>System Monitor Preferences</guilabel> dialog." msgstr "" +"Pilih tab yang relevan dalam area <guilabel>Warna</guilabel> dari dialog " +"<guilabel>Preferensi Pemantau Sistem</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." msgstr "" +"Klik pada tombol pemilih warna yang relevan dalam bagian bertab yang " +"dipilih." #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -511,11 +585,13 @@ msgid "" "On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" " boxes to choose the line color for the selected parameter." msgstr "" +"Pada dialog <guilabel>Ambil suatu Warna</guilabel>, gunakan roda warna atau " +"kotak puntir untuk memilih warna garis bagi parameter yang dipilih." #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Klik <guibutton>OK</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -523,6 +599,9 @@ msgid "" "The tabbed section for each resource provides color selection buttons that " "you can use to change the color of the parameters for each resource." msgstr "" +"Bagian bertab dari setiap sumber daya menyediakan tombol-tombol pemilihan " +"yang dapat Anda pakai untuk mengubah warna dari parameter bagi setiap sumber" +" daya." #. (itstool) path: listitem/para #: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 @@ -530,12 +609,14 @@ msgstr "" msgid "" "Select this tab to display the color buttons for the following parameters:" msgstr "" +"Pilih tab ini untuk menampilkan tombol-tombol warna bagi parameter-parameter" +" berikut:" #. (itstool) path: entry/para #: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 #: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 msgid "Parameter" -msgstr "" +msgstr "Parameter" #. (itstool) path: entry/para #: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 @@ -546,222 +627,224 @@ msgstr "Keterangan" #. (itstool) path: entry/para #: C/index.docbook:446 C/index.docbook:492 msgid "<guilabel>User</guilabel>" -msgstr "" +msgstr "<guilabel>Pengguna</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:447 msgid "Processor time used by non-kernel activities" -msgstr "" +msgstr "Waktu prosesor yang dipakaia oleh aktivitas non-kernel" #. (itstool) path: entry/para #: C/index.docbook:450 msgid "<guilabel>System</guilabel>" -msgstr "" +msgstr "<guilabel>Sistem</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 msgid "Processor time used by kernel activities" -msgstr "" +msgstr "Waktu prosesor yang dipakai oleh aktivitas kernel" #. (itstool) path: entry/para #: C/index.docbook:454 msgid "<guilabel>Nice</guilabel>" -msgstr "" +msgstr "<guilabel>Nice</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:455 msgid "Processor time used by low-priority processes" -msgstr "" +msgstr "Waktu prosesor yang dipakai oleh proses-proses prioritas rendah" #. (itstool) path: entry/para #: C/index.docbook:458 msgid "<guilabel>IOWait</guilabel>" -msgstr "" +msgstr "<guilabel>IOWait</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:460 msgid "Processor time used waiting for I/O" -msgstr "" +msgstr "Waktu prosesor yang dipakai untuk menunggu I/O" #. (itstool) path: entry/para #: C/index.docbook:464 msgid "<guilabel>Idle</guilabel>" -msgstr "" +msgstr "<guilabel>Menganggur</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:465 msgid "Unused processor capacity" -msgstr "" +msgstr "Kapasitas prosesor yang tak terpaka" #. (itstool) path: entry/para #: C/index.docbook:493 msgid "Memory used by non-kernel activities" -msgstr "" +msgstr "Memori yang dipakai oleh aktivitas non-kernel" #. (itstool) path: entry/para #: C/index.docbook:496 msgid "<guilabel>Shared</guilabel>" -msgstr "" +msgstr "<guilabel>Bersama</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:497 msgid "Memory used by more than one application" -msgstr "" +msgstr "Memori yang dipakai oleh lebih dari satu aplikasi" #. (itstool) path: entry/para #: C/index.docbook:500 msgid "<guilabel>Buffers</guilabel>" -msgstr "" +msgstr "<guilabel>Penyangga</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" msgstr "" +"Memori yang dipakai untuk menyimpan sementara data yang dikirim atau " +"diterima" #. (itstool) path: entry/para #: C/index.docbook:504 msgid "<guilabel>Cached</guilabel>" -msgstr "" +msgstr "<guilabel>Disinggahkan</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "" +msgstr "Memori yang dipakai untuk menyimpan data untuk akses cepat" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 msgid "<guilabel>Free</guilabel>" -msgstr "" +msgstr "<guilabel>Bebas</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "" +msgstr "Memori yang saat ini tidak dipakai" #. (itstool) path: entry/para #: C/index.docbook:536 msgid "<guilabel>In</guilabel>" -msgstr "" +msgstr "<guilabel>Masuk</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:537 msgid "Incoming traffic" -msgstr "" +msgstr "Trafik masuk" #. (itstool) path: entry/para #: C/index.docbook:540 msgid "<guilabel>Out</guilabel>" -msgstr "" +msgstr "<guilabel>Keluar</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:541 msgid "Outgoing traffic" -msgstr "" +msgstr "Trafik keluar" #. (itstool) path: entry/para #: C/index.docbook:544 msgid "<guilabel>Local</guilabel>" -msgstr "" +msgstr "<guilabel>Lokal</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:545 msgid "Traffic over loopback" -msgstr "" +msgstr "Trafik melalui loopback" #. (itstool) path: entry/para #: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 msgid "<guilabel>Background</guilabel>" -msgstr "" +msgstr "<guilabel>Latar Belakang</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "" +msgstr "Warna latar grafik" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "" +msgstr "<guilabel>Garis kisi</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "" +msgstr "Warna garis kisi horizontal ketika mengubah skala grafik" #. (itstool) path: entry/para #: C/index.docbook:556 msgid "<guilabel>Indicator</guilabel>" -msgstr "" +msgstr "<guilabel>Indikator</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:557 msgid "Color of indicator showing which threshold was reached" -msgstr "" +msgstr "Warna indikator yang menunjukkan ambang batas mana yang dicapai" #. (itstool) path: entry/para #: C/index.docbook:585 msgid "<guilabel>Used</guilabel>" -msgstr "" +msgstr "<guilabel>Dipakai</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:587 msgid "Swap space being used by the system" -msgstr "" +msgstr "Ruang swap yang sedang dipakai oleh sistem" #. (itstool) path: entry/para #: C/index.docbook:593 msgid "Swap space that is free to be used" -msgstr "" +msgstr "Ruang swap yang bebas untuk dipakai" #. (itstool) path: entry/para #: C/index.docbook:621 msgid "<guilabel>Average</guilabel>" -msgstr "" +msgstr "<guilabel>Rata-rata</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:622 msgid "System Load" -msgstr "" +msgstr "Beban Sistem" #. (itstool) path: entry/para #: C/index.docbook:626 msgid "that is, no load" -msgstr "" +msgstr "yaitu, tiada beban" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "" +msgstr "<guilabel>Garis kisi</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 msgid "Color of grid lines" -msgstr "" +msgstr "Warna garis kisi" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>Baca</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 msgid "Disk read rate" -msgstr "" +msgstr "Laju baca disk" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>Tulis</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 msgid "Disk write rate" -msgstr "" +msgstr "Laju tulis disk" #. (itstool) path: entry/para #: C/index.docbook:666 msgid "Idle disk time" -msgstr "" +msgstr "Waktu disk menganggur" #. (itstool) path: sect2/title #: C/index.docbook:676 @@ -777,14 +860,23 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" +"Ambang batas bersama dengan indikator mengizinkan grafik jaringan terskala " +"dan lebih baik mewakili beban kerja sebenarnya. Bila gabungan trafik " +"jaringan (masuk + keluar + loopback) di bawah treshold1, tidak ada indikator" +" yang ditunjukkan, sumbu-y pada grafik jaringan adalah dari 0 ke treshold1. " +"Ketika trafik lebih dari treshold1, satu indikator akan ditampilkan dan " +"sumbu-y kini dari 0 ke treshold2. Ketika treshold2 dicapai, dua indikator " +"akan ditampilkan dan sumbu-y kini dari 0 ke treshold3. Ketika treshold3 " +"dicapai, tiga indikator ditampilkan dan sumbu-y kini dari 0 ke maksimum saat" +" ini berapa pun dalam grafik." #. (itstool) path: sect2/para #: C/index.docbook:685 msgid "Gridlines are hard to explain, just observe, and they are obvious." -msgstr "" +msgstr "Garis kisi sulit diterangkan, amati saja, dan mereka akan jelas." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -801,6 +893,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen " +"ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi " +"Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang " +"dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa " +"Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan " +"dari GFDL pada <_:ulink-1/> atau di dalam berkas COPYING-DOCS yang " +"didistribusikan bersama manual ini." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/multiload/docs/ie/ie.po b/multiload/docs/ie/ie.po index 1cf1bdb4..0cb8c88c 100644 --- a/multiload/docs/ie/ie.po +++ b/multiload/docs/ie/ie.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ig/ig.po b/multiload/docs/ig/ig.po index 740cf045..260f5393 100644 --- a/multiload/docs/ig/ig.po +++ b/multiload/docs/ig/ig.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/is/is.po b/multiload/docs/is/is.po index 725a378e..094d51c0 100644 --- a/multiload/docs/is/is.po +++ b/multiload/docs/is/is.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -772,7 +772,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/it/it.po b/multiload/docs/it/it.po index d28d8989..c43f80c9 100644 --- a/multiload/docs/it/it.po +++ b/multiload/docs/it/it.po @@ -4,32 +4,34 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # Marco Z. <[email protected]>, 2018 # talorno <[email protected]>, 2018 -# Giuseppe Pignataro <[email protected]>, 2018 +# Giuseppe Pignataro (Fastbyte01) <[email protected]>, 2018 # Enrico B. <[email protected]>, 2020 -# Alessandro Volturno <[email protected]>, 2020 +# Alessandro Volturno <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Alessandro Volturno <[email protected]>, 2020\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"Last-Translator: Alessandro Volturno <[email protected]>, 2022\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr " " +msgstr "" +"Enrico Bella, 2019\n" +"Alessandro Volturno, 2020, 2022" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "Manuale di Monitor di sistema" +msgstr "Manuale di System Monitor" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -37,14 +39,14 @@ msgid "" "System Monitor displays system load information in graphical format in a " "panel." msgstr "" -"Monitor di sistema mostra in un pannello le informazioni sul carico del " -"sistema in formato grafico." +"System Monitor mostra in un pannello le informazioni sul carico del sistema " +"in formato grafico." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Progetto Documentazione di MATE</holder>" +"<year>2015-2021</year> <holder>Progetto Documentazione di MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -102,7 +104,7 @@ msgid "" "<address><email>[email protected]</email></address> </affiliation>" msgstr "" "<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " -"<orgname>GNOME Documentation Project</orgname> " +"<orgname>Progetto documentazione di GNOME</orgname> " "<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author @@ -127,7 +129,7 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" -"<revnumber>Monitor di sistema V2.12</revnumber> <date>Luglio 2015</date> " +"<revnumber>System Monitor V2.12</revnumber> <date>Luglio 2015</date> " "<_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -169,8 +171,8 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale applet Monitor di sistema V2.1</revnumber> <date>Febbraio" -" 2004</date> <_:revdescription-1/>" +"<revnumber>Manuale di System Monitor Applet V2.1</revnumber> <date>Febbraio " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 @@ -183,13 +185,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale dell'applet Monitor di sistema V2.0</revnumber> " -"<date>Luglio 2003</date> <_:revdescription-1/>" +"<revnumber>Manuale System Monitor Applet V2.0</revnumber> <date>Luglio " +"2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." -msgstr "Questo manuale è relativo alla versione 1.10.2 di Monitor di sistema." +msgstr "Questo manuale è relativo alla versione 1.10.2 di System Monitor." #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -203,19 +205,20 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" -"Per segnalare un malfunzionamento o un suggerimento sulla'applet Monitor di " -"sistema o su questo manuale, seguire le istruzioni nella <ulink url=\"help" -":mate-user-guide/feedback\" type=\"help\">pagina di feedback di MATE</ulink>" +"Per segnalare un malfunzionamento o un suggerimento sull'applet System " +"Monitor o su questo manuale, seguire le istruzioni nella <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">pagina di feedback di " +"MATE</ulink>" #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "<primary>Applet Monitor di sistema</primary>" +msgstr "<primary>System Monitor Applet</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "<primary>Monitor di sistema</primary>" +msgstr "<primary>System Monitor</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -225,7 +228,7 @@ msgstr "Introduzione" #. (itstool) path: figure/title #: C/index.docbook:186 msgid "System Monitor" -msgstr "Monitor di sistema" +msgstr "System Monitor" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -249,8 +252,8 @@ msgid "" "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" "<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" -" format=\"PNG\"/> </imageobject> <textobject> <phrase>Monitor di sistema. " -"Mostra un grafico sul carico della CPU del sistema. </phrase> </textobject>" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>System Monitor mostra " +"un grafico sul carico della CPU del sistema. </phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -260,9 +263,9 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" -"Il <application>Monitor di sistema</application> mostra su un pannello le " +"<application>System Monitor</application> mostra su un pannello le " "informazioni del carico del sistema in formato grafico. È possibile " -"configurare <application>Monitor di sistema</application> per mostrare le " +"configurare <application>System Monitor</application> per mostrare le " "seguenti informazioni sul sistema:" #. (itstool) path: listitem/para @@ -283,7 +286,7 @@ msgstr "Traffico di rete" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "Utilizzo area di swap" +msgstr "Utilizzo dell'area di swap" #. (itstool) path: listitem/para #: C/index.docbook:229 @@ -298,7 +301,7 @@ msgstr "Carico del disco" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "Aggiungere Monitor di sistema ad un pannello" +msgstr "Aggiungere System Monitor ad un pannello" #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -306,8 +309,8 @@ msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" msgstr "" -"Per aggiungere <application>Monitor di sistema</application> al pannello " -"seguire questi passaggi:" +"Per aggiungere <application>System Monitor</application> al pannello seguire" +" questi passaggi:" #. (itstool) path: listitem/para #: C/index.docbook:244 @@ -325,8 +328,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" -"Scorri in basso la lista della finestra <guilabel>Aggiungi al " -"pannello</guilabel>, e seleziona <guilabel>Monitor di sistema</guilabel>." +"Scorrere in basso la lista della finestra <guilabel>Aggiungi al " +"pannello</guilabel> e selezionare <guilabel>System Monitor</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:260 @@ -339,13 +342,13 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" -"La visualizzazione del <application>Monitor di sistema</application> varia a" -" seconda della dimensione e del tipo del pannello su cui l'applet risiede." +"La visualizzazione di <application>System Monitor</application> varia a " +"seconda della dimensione e del tipo del pannello su cui l'applet risiede." #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "Visualizzare grafici" +msgstr "Visualizzare i grafici" #. (itstool) path: sect2/title #: C/index.docbook:280 @@ -360,10 +363,10 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" -"Per configurare la applet <application>Monitor di sistema</application>, " -"fare clic destro sull'applet e selezionare " -"<guimenuitem>Preferenze</guimenuitem>. Sotto <guilabel>Risorse " -"monitorate</guilabel> si può selezionare quali grafici visualizzare:" +"Per configurare la applet <application>System Monitor</application>, fare " +"clic destro sull'applet e selezionare <guimenuitem>Preferenze</guimenuitem>." +" Sotto <guilabel>Risorse monitorate</guilabel> si può selezionare quali " +"grafici visualizzare:" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 @@ -398,8 +401,7 @@ msgstr "<guilabel>Rete</guilabel>" #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." msgstr "" -"Selezionare questa opzione per visualizzare il grafico di utilizzo del " -"traffico di rete." +"Selezionare questa opzione per visualizzare il grafico del traffico di rete." #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 @@ -450,13 +452,13 @@ msgid "" "current usage as a percentage." msgstr "" "Per visualizzare l'attuale utilizzo di una risorsa di sistema, posizionare " -"il puntatore del mouse sul grafico corrispondente dell'applet. Un messaggio " +"il puntatore del mouse sul grafico corrispondente nell'applet. Un messaggio " "testuale mostrerà l'utilizzo corrente in percentuale." #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "Mostrare informazioni aggiuntive nel Monitor di sistema" +msgstr "Mostrare informazioni aggiuntive in System Monitor" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -465,10 +467,10 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" -"Per visualizzare maggiori informazioni dal monitor di sistema, fare clic col" -" tasto destro del mouse sull'applet e selezionare <guimenuitem>Apri Monitor " -"di Sistema</guimenuitem> per avviare l'applicazione <application>Monitor di " -"sistema</application>." +"Per visualizzare maggiori informazioni, fare clic col tasto destro del mouse" +" sull'applet e selezionare <guimenuitem>Apri Monitor di " +"Sistema</guimenuitem> per avviare l'applicazione <application>System " +"Monitor</application>." #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -478,10 +480,10 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" -"Il <application>Monitor di sistema</application> consente di monitorare i " -"processi di sistema e l'utilizzo delle risorse. Si può utilizzare il " -"<application>Monitor di sistema</application> per modificare i comportamenti" -" del sistema." +"L'applicazione <application>System Monitor</application> consente di " +"monitorare i processi di sistema e l'utilizzo delle risorse. Si può " +"utilizzare <application>System Monitor</application> per modificare i " +"comportamenti del sistema." #. (itstool) path: sect1/title #: C/index.docbook:360 @@ -491,7 +493,7 @@ msgstr "Personalizzare l'aspetto" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "Finestra delle preferenze" +msgstr "Finestra di dialogo delle preferenze" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -515,8 +517,8 @@ msgid "" "</phrase> </textobject>" msgstr "" "<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " -"format=\"PNG\"/> </imageobject> <textobject> <phrase>Finestra " -"Preferenze</phrase> </textobject>" +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Finestra di dialogo " +"delle Preferenze</phrase> </textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 @@ -533,9 +535,9 @@ msgid "" msgstr "" "Fare clic col tasto destro del mouse e selezionare " "<guimenuitem>Preferenze</guimenuitem>. Sotto <guilabel>Opzioni</guilabel>, " -"utilizzare <guilabel>Larghezza monitor di sistema</guilabel> per selezionare" -" la larghezza in pixel di ogni grafico di <application>Monitor di " -"sistema</application>." +"utilizzare <guilabel>Larghezza del monitor di sistema</guilabel> per " +"selezionare la larghezza in pixel di ogni grafico di <application>System " +"Monitor</application>." #. (itstool) path: sect2/title #: C/index.docbook:380 @@ -553,8 +555,8 @@ msgstr "" "Fare clic col pulsante destro del mouse e selezionare " "<guimenuitem>Preferenze</guimenuitem>. Sotto <guilabel>Opzioni</guilabel>, " "utilizzare la casella <guilabel>Intervallo di aggiornamento di monitor di " -"sistema</guilabel> per selezione l'intervallo di aggiornamento in " -"millisecondi del grafico." +"sistema</guilabel> per selezione l'intervallo di aggiornamento del grafico " +"in millisecondi." #. (itstool) path: sect2/title #: C/index.docbook:386 @@ -589,7 +591,7 @@ msgstr "" #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." -msgstr "Fare clic sul selettore del colore nell'area a schede interessata. " +msgstr "Fare clic sul selettore del colore nella scheda selezionata. " #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -710,7 +712,8 @@ msgstr "<guilabel>Buffer</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" -msgstr "Memoria usata per memorizzare temporaneamente dati inviati o ricevuti" +msgstr "" +"Memoria usata per memorizzare temporaneamente i dati inviati o ricevuti" #. (itstool) path: entry/para #: C/index.docbook:504 @@ -720,7 +723,7 @@ msgstr "<guilabel>In cache</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "Memoria usata per memorizzare dati ad accesso rapido" +msgstr "Memoria usata per memorizzare i dati per l'accesso rapido" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 @@ -730,7 +733,7 @@ msgstr "<guilabel>Libero</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "Memoria attualmente non uutilizzata" +msgstr "Memoria attualmente non utilizzata" #. (itstool) path: entry/para #: C/index.docbook:536 @@ -770,17 +773,17 @@ msgstr "<guilabel>Sfondo</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "Colore sfondo del grafico" +msgstr "Colore di sfondo del grafico" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "<guilabel>Linea griglia</guilabel>" +msgstr "<guilabel>Linea della griglia</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "Colore della griglia orizzontale nei grafici scalati" +msgstr "Colore della griglia orizzontale quando si ridimensiona il grafico" #. (itstool) path: entry/para #: C/index.docbook:556 @@ -825,7 +828,7 @@ msgstr "cioè, nessun carico" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "<guilabel>Linea griglia</guilabel>" +msgstr "<guilabel>Linea della griglia</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 @@ -871,15 +874,15 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" -"Le soglie e l'indicatore permettono di scalare il grafico di rete e di " -"rappresentare meglio il carico di lavoro effettivo. Se il traffico di rete " -"combinato (in + out + loopback) è sotto alla soglia1, non viene mostrato " -"alcun indicatore e l'asse y sul grafico di rete va da 0 a soglia1. Quando il" -" traffico è superiore alla soglia1, viene mostrato un indicatore e l'asse y " -"passa ora da 0 alla soglia2. Quando la soglia2 viene raggiunta, vengono " +"Le soglie e l'indicatore permettono di ridimensionare il grafico di rete e " +"di rappresentare meglio il carico di lavoro effettivo. Se il traffico di " +"rete combinato (in + out + loopback) è al di sotto della soglia1, non viene " +"mostrato alcun indicatore e l'asse y sul grafico di rete va da 0 a soglia1. " +"Quando il traffico è superiore alla soglia1, viene mostrato un indicatore e " +"l'asse y va da 0 a soglia2. Quando viene raggiunta la soglia2, vengono " "mostrati due indicatori e l'asse y va da 0 a soglia3. Quando si raggiunge la" " soglia3, vengono mostrati tre indicatori e l'asse y va da 0 al valore " "massimo attuale nel grafico." @@ -908,10 +911,10 @@ msgid "" msgstr "" "È concesso il permesso di copiare, distribuire e/o modificare questo " "documento in base ai termini della GNU Free Documentation License (GFDL), " -"Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software " -"Foundation senza sezioni invarianti, senza testi di copertina e nessun testo" -" di retro copertina. Puoi trovare una copia del GFDL qui <_:ulink-1/> o nel " -"file COPYING-DOCS distribuito con questo manuale." +"Versione 1.1 o una qualsiasi versione successiva pubblicata dalla Free " +"Software Foundation senza sezioni invarianti, senza testi di copertina e " +"nessun testo di retro copertina. È possibile trovare una copia del GFDL qui " +"<_:ulink-1/> o nel file COPYING-DOCS distribuito con questo manuale." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -968,7 +971,7 @@ msgstr "" "REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " "LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" " DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; E" #. (itstool) path: listitem/para #: C/legal.xml:55 diff --git a/multiload/docs/ja/ja.po b/multiload/docs/ja/ja.po index d4ad9004..409d61ee 100644 --- a/multiload/docs/ja/ja.po +++ b/multiload/docs/ja/ja.po @@ -2,18 +2,17 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # ABE Tsunehiko, 2018 -# あわしろいくや <[email protected]>, 2018 # shinmili <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Aefgh Threenine <[email protected]>, 2019 +# Green <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Aefgh Threenine <[email protected]>, 2019\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"Last-Translator: Green <[email protected]>, 2021\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,62 +23,64 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"相花 毅 <[email protected]>\n" -"佐藤 暁 <[email protected]>\n" -"KAMAGASAKO Masatoshi <[email protected]>\n" -"Akira TAGOH <[email protected]>\n" -"Yukihiro Nakai <[email protected]>\n" -"Yuusuke Tahara <[email protected]>\n" -"Akira Higuchi <[email protected]>\n" -"やまね ひでき <[email protected]>\n" -"草野 貴之 <[email protected]>\n" -"松澤 二郎 <[email protected]>\n" -"日本GNOMEユーザー会 http://www.gnome.gr.jp/" +"相花 毅 \n" +"佐藤 暁 \n" +"KAMAGASAKO Masatoshi \n" +"Akira TAGOH \n" +"Yukihiro Nakai \n" +"Yuusuke Tahara \n" +"Akira Higuchi \n" +"やまね ひでき \n" +"草野 貴之 \n" +"松澤 二郎 \n" +"Green, alias usergreen \n" +"日本GNOMEユーザー会 http://www.gnome.gr.jp/\n" +"MATE 文書化チーム https://www.transifex.com/mate/ " #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "" +msgstr "システムモニタ・マニュアル" #. (itstool) path: abstract/para #: C/index.docbook:24 msgid "" "System Monitor displays system load information in graphical format in a " "panel." -msgstr "" +msgstr "システムモニタは、システム負荷情報をグラフ形式でパネルに表示します。" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 文書プロジェクト</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 msgid "<year>2005</year> <holder>Davyd Madeley</holder>" -msgstr "" +msgstr "<year>2005年</year> <holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:35 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "<year>2004</year> <holder>サン・マイクロシステムズ</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:53 C/index.docbook:118 msgid "MATE Documentation Project" -msgstr "MATE ドキュメンテーション・プロジェクト" +msgstr "MATE 文書化プロジェクト" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:56 C/index.docbook:135 C/index.docbook:144 #: C/index.docbook:155 msgid "GNOME Documentation Project" -msgstr "GNOME ドキュメンテーション・プロジェクト" +msgstr "GNOME 文書化プロジェクト" #. (itstool) path: authorgroup/author #: C/index.docbook:63 @@ -87,6 +88,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 文書化チーム</firstname> <surname/> <affiliation><orgname>MATE " +"デスクトップ</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -95,6 +98,9 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -103,6 +109,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>GNOME 文書化プロジェクト</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -111,11 +120,14 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME プロジェクト</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:117 msgid "MATE Documentation Team" -msgstr "MATE ドキュメンテーション・チーム" +msgstr "MATE 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:113 @@ -123,11 +135,13 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>システムモニタ 2.12 版</revnumber> <date>2015年7月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:122 @@ -135,11 +149,12 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>2.10 版</revnumber> <date>2005年3月</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -147,11 +162,12 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>2.8 版</revnumber> <date>2004年8月</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 msgid "Sun GNOME Documentation Team" -msgstr "Sun GNOME ドキュメンテーション・チーム" +msgstr "Sun GNOME 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:139 @@ -159,11 +175,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>システムモニタ・マニュアル 2.1 版</revnumber> <date>2004年2月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Chee Bin HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -171,11 +189,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>システムモニタ・マニュアル 2.0 版</revnumber> <date>2003年7月</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." -msgstr "" +msgstr "本マニュアルは、システムモニタ 1.10.2 版について説明しています。" #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -189,16 +209,18 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"システムモニタ・アプレットやこのマニュアルに関する不具合や提案を報告するには、<ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">MATE フィードバック・ページ</ulink>の指示に従ってください。" #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>システムモニタ・アプレット</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>システム・モニタ</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -208,7 +230,7 @@ msgstr "はじめに" #. (itstool) path: figure/title #: C/index.docbook:186 msgid "System Monitor" -msgstr "システムモニター" +msgstr "システムモニタ" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -221,6 +243,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -229,6 +253,9 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>システムモニタを表示します。システムの " +"CPU 負荷グラフが表示されます。</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -238,58 +265,59 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" +"<application>システムモニタ</application>は、システムの負荷情報をパネルにグラフィカルな形式で表示します。<application>システムモニタ</application>の構成を設定すると、システムに関する次の情報を表示できます。" #. (itstool) path: listitem/para #: C/index.docbook:209 msgid "Usage of CPU (central processing unit) time" -msgstr "" +msgstr "CPU (中央演算処理装置) 使用時間" #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "メモリ使用量" #. (itstool) path: listitem/para #: C/index.docbook:219 msgid "Network traffic" -msgstr "" +msgstr "ネットワーク使用状況" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "スワップ領域の使用率" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Average system load" -msgstr "" +msgstr "システムの平均負荷" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "ディスク負荷" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "" +msgstr "システムモニタをパネルに追加するには" #. (itstool) path: sect2/para #: C/index.docbook:238 msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" -msgstr "" +msgstr "<application>システムモニタ</application>をパネルに追加するには、次の手順に従います。" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "パネル上で右クリックします。" #. (itstool) path: listitem/para #: C/index.docbook:249 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "<guimenuitem>パネルに追加</guimenuitem>を選びます。" #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -297,11 +325,12 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" +"<guilabel>パネルに追加</guilabel>ダイアログの項目一覧を下にスクロールし、<guilabel>システムモニタ</guilabel>を選択します。" #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "<guibutton>追加</guibutton>をクリックします。" #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -309,16 +338,17 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" +"<application>システムモニタ</application>のレイアウトは、このアプレットが置かれているパネルの大きさや種類によって異なります。" #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "" +msgstr "グラフを表示する" #. (itstool) path: sect2/title #: C/index.docbook:280 msgid "Displaying Additional Graphs" -msgstr "" +msgstr "追加のグラフを表示する" #. (itstool) path: sect2/para #: C/index.docbook:281 @@ -328,71 +358,73 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" +"システムモニタ・アプレットを設定するには、アプレットを右クリックし、<guimenuitem>設定</guimenuitem>を選択します。<guilabel>[監視対象リソース(Monitored" +" Resources)]</guilabel>で、表示するグラフィックを選択できます。" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 msgid "<guilabel>Processor</guilabel>" -msgstr "" +msgstr "<guilabel>プロセッサ</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:287 msgid "Select this option to display the graph for CPU usage." -msgstr "" +msgstr "このオプションを選択すると、CPU 使用率のグラフが表示されます。" #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 msgid "<guilabel>Memory</guilabel>" -msgstr "" +msgstr "<guilabel>メモリ</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Select this option to display the graph for memory usage." -msgstr "" +msgstr "このオプションを選択すると、メモリー使用量のグラフが表示されます。" #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>ネットワーク</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." -msgstr "" +msgstr "このオプションを選択すると、ネットワーク使用状況のグラフが表示されます。" #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 msgid "<guilabel>Swap Space</guilabel>" -msgstr "" +msgstr "<guilabel>スワップ領域</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:311 msgid "Select this option to display the graph for swap-space usage." -msgstr "" +msgstr "このオプションを選択すると、スワップ領域使用量のグラフを表示します。" #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>負荷</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 msgid "Select this option to display the graph for average system load." -msgstr "" +msgstr "このオプションを選択すると、平均システム負荷のグラフを表示します。" #. (itstool) path: listitem/para #: C/index.docbook:324 C/index.docbook:637 msgid "<guilabel>Harddisk</guilabel>" -msgstr "" +msgstr "<guilabel>ハードディスク</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:325 msgid "Select this option to display the graph for disk usage." -msgstr "" +msgstr "このオプションを選択すると、ディスク使用率のグラフを表示します。" #. (itstool) path: sect2/title #: C/index.docbook:333 msgid "To Display the Current Usage of a System Resource" -msgstr "" +msgstr "システムリソースの現在の使用状況を表示するには" #. (itstool) path: sect2/para #: C/index.docbook:334 @@ -401,11 +433,12 @@ msgid "" "pointer over the corresponding graph in the applet. A tooltip displays the " "current usage as a percentage." msgstr "" +"システム・リソースの現在の使用状況を表示するには、アプレット内の対応するグラフの上にマウス・ポインタを置きます。情報ヒントに現在の使用状況がパーセントで表示されます。" #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "" +msgstr "追加のシステムモニタ情報を表示するには" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -414,6 +447,7 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" +"追加のシステムモニタ情報を表示するには、アプレットを右クリックし、<guimenuitem>システムモニタを開く</guimenuitem>を選択して、<application>システムモニタ</application>・アプリケーションを起動します。" #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -423,16 +457,17 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" +"<application>システムモニタ</application>・アプリケーションでは、システムのプロセス、システムリソースの使用状況を監視することができます。また、<application>システムモニタ</application>を使って、システムの動作を変更することもできます。" #. (itstool) path: sect1/title #: C/index.docbook:360 msgid "Customizing Appearance" -msgstr "" +msgstr "外観をカスタマイズする" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "" +msgstr "設定ダイアログ" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -445,6 +480,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -453,11 +490,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>設定ダイアログ</phrase> " +"</textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 msgid "To Change the Width" -msgstr "" +msgstr "幅を変更するには" #. (itstool) path: sect2/para #: C/index.docbook:377 @@ -467,11 +507,12 @@ msgid "" "width</guilabel> spin box to specify the width of each <application>System " "Monitor</application> graph in pixels." msgstr "" +"右クリックメニューで、<guimenuitem>設定</guimenuitem>に移動します。<guilabel>オプション</guilabel>の<guilabel>システムモニタの幅</guilabel>スピンボックスを使用して、各<application>システムモニタ</application>のグラフ幅をピクセル単位で指定します。" #. (itstool) path: sect2/title #: C/index.docbook:380 msgid "To Update at Regular Intervals" -msgstr "" +msgstr "一定の間隔で更新するには" #. (itstool) path: sect2/para #: C/index.docbook:381 @@ -481,23 +522,24 @@ msgid "" "interval</guilabel> spin box to specify the interval at which you want to " "update the graphs in milliseconds." msgstr "" +"右クリックメニューで、<guimenuitem>設定</guimenuitem>に移動します。<guilabel>オプション</guilabel>の<guilabel>システムモニタの更新間隔</guilabel>スピンボックスを使用して、グラフを更新する間隔をミリ秒単位で指定します。" #. (itstool) path: sect2/title #: C/index.docbook:386 msgid "Changing the Colors in a Graph" -msgstr "" +msgstr "グラフの色を変更するには" #. (itstool) path: sect2/para #: C/index.docbook:387 msgid "To change the colors in a graph, perform the following steps:" -msgstr "" +msgstr "グラフの色を変更するには、次の手順を実行します。" #. (itstool) path: listitem/para #: C/index.docbook:392 msgid "" "Right-click on the applet, then choose " "<guimenuitem>Preferences</guimenuitem>." -msgstr "" +msgstr "アプレットの上で右クリックし、<guimenuitem>設定</guimenuitem>を選択してください。" #. (itstool) path: listitem/para #: C/index.docbook:397 @@ -505,12 +547,13 @@ msgid "" "Select the relevant tab in the <guilabel>Colors</guilabel> area of the " "<guilabel>System Monitor Preferences</guilabel> dialog." msgstr "" +"<guilabel>システムモニタ設定</guilabel>ダイアログボックスの<guilabel>色</guilabel>領域で、該当するタブを選択します。" #. (itstool) path: listitem/para #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." -msgstr "" +msgstr "選択したタブ付き項目で、該当するカラー選択ボタンをクリックします。" #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -518,31 +561,32 @@ msgid "" "On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" " boxes to choose the line color for the selected parameter." msgstr "" +"<guilabel>色の選択</guilabel>ダイアログボックスで、色相環またはスピンボックスを使用して、選択したパラメータの線の色を選択します。" #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "<guibutton>OK</guibutton>をクリックします。" #. (itstool) path: sect2/para #: C/index.docbook:420 msgid "" "The tabbed section for each resource provides color selection buttons that " "you can use to change the color of the parameters for each resource." -msgstr "" +msgstr "各リソースのタブ付き項目には、各リソースのパラメータの色を変更するために使用可能な、色選択ボタンがあります。" #. (itstool) path: listitem/para #: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 #: C/index.docbook:568 C/index.docbook:604 C/index.docbook:640 msgid "" "Select this tab to display the color buttons for the following parameters:" -msgstr "" +msgstr "このタブを選択すると、次のパラメータのカラーボタンが表示されます。" #. (itstool) path: entry/para #: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 #: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 msgid "Parameter" -msgstr "" +msgstr "パラメータ" #. (itstool) path: entry/para #: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 @@ -553,227 +597,227 @@ msgstr "説明" #. (itstool) path: entry/para #: C/index.docbook:446 C/index.docbook:492 msgid "<guilabel>User</guilabel>" -msgstr "" +msgstr "<guilabel>ユーザ</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:447 msgid "Processor time used by non-kernel activities" -msgstr "" +msgstr "カーネル以外のアクティビティによって使用されるプロセッサ時間" #. (itstool) path: entry/para #: C/index.docbook:450 msgid "<guilabel>System</guilabel>" -msgstr "" +msgstr "<guilabel>システム</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 msgid "Processor time used by kernel activities" -msgstr "" +msgstr "カーネルの稼働によって使用されるプロセッサ時間" #. (itstool) path: entry/para #: C/index.docbook:454 msgid "<guilabel>Nice</guilabel>" -msgstr "" +msgstr "<guilabel>優先度</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:455 msgid "Processor time used by low-priority processes" -msgstr "" +msgstr "優先度の低いプロセスによって使用されるプロセッサ時間" #. (itstool) path: entry/para #: C/index.docbook:458 msgid "<guilabel>IOWait</guilabel>" -msgstr "" +msgstr "<guilabel>IO待ち</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:460 msgid "Processor time used waiting for I/O" -msgstr "" +msgstr "入出力の待機に使用されたプロセッサ時間" #. (itstool) path: entry/para #: C/index.docbook:464 msgid "<guilabel>Idle</guilabel>" -msgstr "" +msgstr "<guilabel>アイドル</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:465 msgid "Unused processor capacity" -msgstr "" +msgstr "未使用のプロセッサ容量" #. (itstool) path: entry/para #: C/index.docbook:493 msgid "Memory used by non-kernel activities" -msgstr "" +msgstr "カーネル以外のアクティビティで使用されるメモリ" #. (itstool) path: entry/para #: C/index.docbook:496 msgid "<guilabel>Shared</guilabel>" -msgstr "" +msgstr "<guilabel>共有</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:497 msgid "Memory used by more than one application" -msgstr "" +msgstr "複数のアプリケーションによって使用されるメモリ" #. (itstool) path: entry/para #: C/index.docbook:500 msgid "<guilabel>Buffers</guilabel>" -msgstr "" +msgstr "<guilabel>バッファ</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" -msgstr "" +msgstr "送受信したデータを一時的に保存するためのメモリ" #. (itstool) path: entry/para #: C/index.docbook:504 msgid "<guilabel>Cached</guilabel>" -msgstr "" +msgstr "<guilabel>キャッシュ</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "" +msgstr "高速アクセスの目的でデータを保存するメモリ" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 msgid "<guilabel>Free</guilabel>" -msgstr "" +msgstr "<guilabel>フリー</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "" +msgstr "現在使用されていないメモリ" #. (itstool) path: entry/para #: C/index.docbook:536 msgid "<guilabel>In</guilabel>" -msgstr "" +msgstr "<guilabel>着信</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:537 msgid "Incoming traffic" -msgstr "" +msgstr "着信トラフィック" #. (itstool) path: entry/para #: C/index.docbook:540 msgid "<guilabel>Out</guilabel>" -msgstr "" +msgstr "<guilabel>発信</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:541 msgid "Outgoing traffic" -msgstr "" +msgstr "発信トラフィック" #. (itstool) path: entry/para #: C/index.docbook:544 msgid "<guilabel>Local</guilabel>" -msgstr "" +msgstr "<guilabel>ローカル</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:545 msgid "Traffic over loopback" -msgstr "" +msgstr "ループバック上のトラフィック" #. (itstool) path: entry/para #: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 msgid "<guilabel>Background</guilabel>" -msgstr "" +msgstr "<guilabel>背景</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "" +msgstr "グラフの背景色" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "" +msgstr "<guilabel>グリッド線</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "" +msgstr "グラフをスケールするときの水平方向の枠線の色" #. (itstool) path: entry/para #: C/index.docbook:556 msgid "<guilabel>Indicator</guilabel>" -msgstr "" +msgstr "<guilabel>インジケータ</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:557 msgid "Color of indicator showing which threshold was reached" -msgstr "" +msgstr "どれがしきい値に達したかを示すインジケータの色" #. (itstool) path: entry/para #: C/index.docbook:585 msgid "<guilabel>Used</guilabel>" -msgstr "" +msgstr "<guilabel>使用済み</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:587 msgid "Swap space being used by the system" -msgstr "" +msgstr "システムによって使用中のスワップ領域" #. (itstool) path: entry/para #: C/index.docbook:593 msgid "Swap space that is free to be used" -msgstr "" +msgstr "使用可能なスワップ領域" #. (itstool) path: entry/para #: C/index.docbook:621 msgid "<guilabel>Average</guilabel>" -msgstr "" +msgstr "<guilabel>平均値</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:622 msgid "System Load" -msgstr "" +msgstr "システム負荷" #. (itstool) path: entry/para #: C/index.docbook:626 msgid "that is, no load" -msgstr "" +msgstr "負荷なし" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "" +msgstr "<guilabel>グリッド線</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 msgid "Color of grid lines" -msgstr "" +msgstr "グリッド線の色" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>読み取り</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 msgid "Disk read rate" -msgstr "" +msgstr "ディスクの読み取りレート" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>書き込み</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 msgid "Disk write rate" -msgstr "" +msgstr "ディスク書き込みレート" #. (itstool) path: entry/para #: C/index.docbook:666 msgid "Idle disk time" -msgstr "" +msgstr "ディスクのアイドル時間" #. (itstool) path: sect2/title #: C/index.docbook:676 msgid "Network speed thresholds" -msgstr "" +msgstr "ネットワーク速度のしきい値" #. (itstool) path: sect2/para #: C/index.docbook:677 @@ -784,14 +828,19 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" +"しきい値とインジケータを併用すると、ネットワーク・グラフを拡張して、実際のワークロードをより正確に表すことができます。ネットワーク・トラフィックの合計 " +"(in + out + ループバック)がしきい値 1 を下回る場合、インジケータは表示されず、ネットワーク・グラフの y 軸は 0 からしきい値 1 " +"に移動します。トラフィックがしきい値 1 を超える場合、1 つのインジケータが表示され、y 軸は 0 からしきい値 2 に移動します。しきい値 2 " +"に達すると、2 つのインジケータが表示され、y 軸は 0 からしきい値 3 に移動します。しきい値 3 に達すると、3 つのインジケータが表示され、y " +"軸は 0 からグラフの現在の最大値に移動します。" #. (itstool) path: sect2/para #: C/index.docbook:685 msgid "Gridlines are hard to explain, just observe, and they are obvious." -msgstr "" +msgstr "グリッド線は説明するのが難しいですが、単に観察するだけで明らかです。" #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -808,6 +857,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 " +"版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物は<_:ulink-1/>、またはこの文書と共に配布されている" +" COPYING-DOCS というファイルに中に記載されています。" #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -817,9 +869,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"本ドキュメントは GFDL の下で配布されているその他の MATE " -"マニュアル集の一部である。これらのマニュアルとは別に本ドキュメントを別個に配布する場合は、GFDL " -"のセクション6で説明しているように、そのマニュアル集に対するライセンスの複製を添付することで実現できる。" +"本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL " +"の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。" #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -830,9 +881,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"企業は自分達の製品とサービスを区別するために使用する多くの名称が登録商標であると主張している。これらの名称が MATE " -"のドキュメントの中に表記されていたり、これらの登録商標が MATE " -"ドキュメンテーション・プロジェクトのメンバに提示している箇所は全部を大文字または最初の文字を大文字にしている。" +"企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE " +"の文書の中に記載されていて、この登録商標が MATE " +"文書化プロジェクトのメンバーによって了解されている箇所については、名称が大文字または頭文字を大文字で表示しています。" #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -893,3 +944,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"この文書およびその修正版は、以下の点をさらに了解しているという前提で、GNU 自由文書ライセンス " +"の条件の下で配布されています:<_:orderedlist-1/>" diff --git a/multiload/docs/ka/ka.po b/multiload/docs/ka/ka.po index 01ee8f53..d945f762 100644 --- a/multiload/docs/ka/ka.po +++ b/multiload/docs/ka/ka.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/kab/kab.po b/multiload/docs/kab/kab.po index 1bfd1228..636345a0 100644 --- a/multiload/docs/kab/kab.po +++ b/multiload/docs/kab/kab.po @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI <[email protected]>, 2020 +# Slimane Selyan AMIRI <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/kk/kk.po b/multiload/docs/kk/kk.po index e7cf216d..d6edac0e 100644 --- a/multiload/docs/kk/kk.po +++ b/multiload/docs/kk/kk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/kn/kn.po b/multiload/docs/kn/kn.po index 38de07be..47106b31 100644 --- a/multiload/docs/kn/kn.po +++ b/multiload/docs/kn/kn.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: karthik holla <[email protected]>, 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ko/ko.po b/multiload/docs/ko/ko.po index b003ea2b..6a317059 100644 --- a/multiload/docs/ko/ko.po +++ b/multiload/docs/ko/ko.po @@ -1,17 +1,17 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# HanSol Park <[email protected]>, 2018 -# 박정규(Jung-Kyu Park) <[email protected]>, 2019 +# Junghee Lee <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: 박정규(Jung-Kyu Park) <[email protected]>, 2019\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"Last-Translator: Junghee Lee <[email protected]>, 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,6 +27,7 @@ msgstr "" "Yoo Duk Nam https://launchpad.net/~yoo2001818\n" "onlyeriko https://launchpad.net/~onlyeriko\n" "Seong-ho Cho <[email protected]>\n" +"JungHee Lee <[email protected]>\n" "MATE Desktop Environment Team <https://www.transifex.com/mate/teams/13566/ko/>" #. (itstool) path: articleinfo/title @@ -43,8 +44,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 문서화 프로젝트</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -54,7 +55,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:35 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "<year>2004</year> <holder>썬 마이크로시스템즈</holder>" +msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 @@ -65,14 +66,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:53 C/index.docbook:118 msgid "MATE Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "MATE 문서화 프로젝트" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:56 C/index.docbook:135 C/index.docbook:144 #: C/index.docbook:155 msgid "GNOME Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "GNOME 문서화 프로젝트" #. (itstool) path: authorgroup/author #: C/index.docbook:63 @@ -80,6 +81,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 문서화 팀</firstname> <surname/> <affiliation> <orgname>MATE " +"데스크톱</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -88,6 +91,9 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -96,6 +102,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>GNOME 문서화 프로젝트</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -104,11 +113,14 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME 프로젝트</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:117 msgid "MATE Documentation Team" -msgstr "MATE 문서 팀" +msgstr "MATE 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:113 @@ -116,6 +128,8 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>시스템 모니터 V2.12</revnumber> <date>2015년 7월</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 @@ -128,6 +142,7 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>버전 2.10</revnumber> <date>3월 2005</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 @@ -140,11 +155,12 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>버전 2.8</revnumber> <date>8월 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:139 @@ -152,11 +168,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>시스템 모니터 애플릿 설명서 V2.1</revnumber> <date>2월 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Chee Bin HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -164,6 +182,8 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>시스템 모니터 애플릿 설명서 V2.0</revnumber> <date>2003년 7월</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 @@ -186,12 +206,12 @@ msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>시스템 모니터 애플릿</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>시스템 모니터</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -214,6 +234,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -222,6 +244,9 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-애플릿_창.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>시스템 모니터를 표시합니다. 시스템 CPU" +" 부하에 대한 그래프를 표시합니다. </phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -438,6 +463,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -446,6 +473,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-기본 설정.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>기본 설정 대화상자 </phrase> " +"</textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 @@ -777,7 +807,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -801,6 +831,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " +"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " +"COPYING-DOCS 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -810,8 +843,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"본 설명서는 GFDL에 따라 배포된 그놈 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에" -" 따라 라이센스 사본을 설명서에 추가하면 됩니다." +"본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 " +"6에 따라 라이센스 사본을 설명서에 추가하면 됩니다." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -822,8 +855,8 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. 그놈 문서에 사용된 이름과 그놈 문서 프로젝트의 구성원은 " -"해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." +"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 " +"구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -871,3 +904,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"<_:orderedlist-1/>" diff --git a/multiload/docs/ku/ku.po b/multiload/docs/ku/ku.po index b3c949aa..186b4568 100644 --- a/multiload/docs/ku/ku.po +++ b/multiload/docs/ku/ku.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ku_IQ/ku_IQ.po b/multiload/docs/ku_IQ/ku_IQ.po new file mode 100644 index 00000000..3d4d5a20 --- /dev/null +++ b/multiload/docs/ku_IQ/ku_IQ.po @@ -0,0 +1,852 @@ +# +# Translators: +# Rasti K5 <[email protected]>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:23+0000\n" +"Last-Translator: Rasti K5 <[email protected]>, 2023\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:22 +msgid "System Monitor Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:24 +msgid "" +"System Monitor displays system load information in graphical format in a " +"panel." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:27 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "<year>2005</year> <holder>Davyd Madeley</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:53 C/index.docbook:118 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:56 C/index.docbook:135 C/index.docbook:144 +#: C/index.docbook:155 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:63 +msgid "" +"<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:71 +msgid "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:79 +msgid "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:88 +msgid "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:117 +msgid "MATE Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:113 +msgid "" +"<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:126 +msgid "Davyd Madeley" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:122 +msgid "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:134 +msgid "Angela Boyle" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:130 +msgid "" +"<revnumber>Version 2.8</revnumber> <date>August 2004</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:143 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:139 +msgid "" +"<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:152 +msgid "Chee Bin HOH <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:148 +msgid "" +"<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:161 +msgid "This manual describes version 1.10.2 of System Monitor." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:164 +msgid "Feedback" +msgstr "پاشخورد" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:165 +msgid "" +"To report a bug or make a suggestion regarding the System Monitor applet or " +"this manual, follow the directions in the <ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:172 +msgid "<primary>System Monitor Applet</primary>" +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:175 +msgid "<primary>System Monitor</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:182 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:186 +msgid "System Monitor" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:190 +msgctxt "_" +msgid "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:188 +msgid "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " +"Displays a graph for system CPU load. </phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:201 +msgid "" +"The <application>System Monitor</application> displays system load " +"information in graphical format in a panel. You can configure " +"<application>System Monitor</application> to display the following " +"information for your system:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:209 +msgid "Usage of CPU (central processing unit) time" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:214 +msgid "Memory usage" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:219 +msgid "Network traffic" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:224 +msgid "Usage of swap space" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:229 +msgid "Average system load" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:233 +msgid "Disk load" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:237 +msgid "To Add System Monitor to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:238 +msgid "" +"To add <application>System Monitor</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:244 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:249 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:254 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>System Monitor</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:260 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:265 +msgid "" +"The layout of the <application>System Monitor</application> varies depending" +" on the size and type of panel in which the applet resides." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:277 +msgid "Viewing Graphs" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:280 +msgid "Displaying Additional Graphs" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:281 +msgid "" +"To configure the <application>System Monitor</application> applet, right-" +"click on the applet, then choose <guimenuitem>Preferences</guimenuitem>. " +"Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" +" you want to display:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:284 C/index.docbook:426 +msgid "<guilabel>Processor</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:287 +msgid "Select this option to display the graph for CPU usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:292 C/index.docbook:472 +msgid "<guilabel>Memory</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:295 +msgid "Select this option to display the graph for memory usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:300 C/index.docbook:516 +msgid "<guilabel>Network</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:303 +msgid "Select this option to display the graph for network traffic." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:308 C/index.docbook:565 +msgid "<guilabel>Swap Space</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:311 +msgid "Select this option to display the graph for swap-space usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:316 C/index.docbook:601 +msgid "<guilabel>Load</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:319 +msgid "Select this option to display the graph for average system load." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:324 C/index.docbook:637 +msgid "<guilabel>Harddisk</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:325 +msgid "Select this option to display the graph for disk usage." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:333 +msgid "To Display the Current Usage of a System Resource" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:334 +msgid "" +"To display the current usage of a system resource, position the mouse " +"pointer over the corresponding graph in the applet. A tooltip displays the " +"current usage as a percentage." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:342 +msgid "To Display Additional System Monitor Information" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:343 +msgid "" +"To display additional system monitor information, right-click on the applet," +" then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " +"<application>System Monitor</application> application." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:348 +msgid "" +"The <application>System Monitor</application> application enables you to " +"monitor system processes and usage of system resources. You can use the " +"<application>System Monitor</application> application to modify the behavior" +" of your system." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:360 +msgid "Customizing Appearance" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:362 +msgid "Preferences Dialog" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:366 +msgctxt "_" +msgid "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:364 +msgid "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " +"</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:376 +msgid "To Change the Width" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:377 +msgid "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor " +"width</guilabel> spin box to specify the width of each <application>System " +"Monitor</application> graph in pixels." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:380 +msgid "To Update at Regular Intervals" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:381 +msgid "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor update " +"interval</guilabel> spin box to specify the interval at which you want to " +"update the graphs in milliseconds." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:386 +msgid "Changing the Colors in a Graph" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:387 +msgid "To change the colors in a graph, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:392 +msgid "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:397 +msgid "" +"Select the relevant tab in the <guilabel>Colors</guilabel> area of the " +"<guilabel>System Monitor Preferences</guilabel> dialog." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:403 +msgid "" +"Click on the relevant color selector button in the selected tabbed section." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:408 +msgid "" +"On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" +" boxes to choose the line color for the selected parameter." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:415 +msgid "Click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:420 +msgid "" +"The tabbed section for each resource provides color selection buttons that " +"you can use to change the color of the parameters for each resource." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 +#: C/index.docbook:568 C/index.docbook:604 C/index.docbook:640 +msgid "" +"Select this tab to display the color buttons for the following parameters:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 +#: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 +msgid "Parameter" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 +#: C/index.docbook:580 C/index.docbook:616 C/index.docbook:652 +msgid "Description" +msgstr "پێناسە" + +#. (itstool) path: entry/para +#: C/index.docbook:446 C/index.docbook:492 +msgid "<guilabel>User</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:447 +msgid "Processor time used by non-kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:450 +msgid "<guilabel>System</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:451 +msgid "Processor time used by kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:454 +msgid "<guilabel>Nice</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:455 +msgid "Processor time used by low-priority processes" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:458 +msgid "<guilabel>IOWait</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:460 +msgid "Processor time used waiting for I/O" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:464 +msgid "<guilabel>Idle</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:465 +msgid "Unused processor capacity" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:493 +msgid "Memory used by non-kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:496 +msgid "<guilabel>Shared</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:497 +msgid "Memory used by more than one application" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:500 +msgid "<guilabel>Buffers</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:501 +msgid "Memory used to temporarily store sent or received data" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:504 +msgid "<guilabel>Cached</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:505 +msgid "Memory used to store data for fast access" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:508 C/index.docbook:591 +msgid "<guilabel>Free</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:509 +msgid "Memory not currently in use" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:536 +msgid "<guilabel>In</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:537 +msgid "Incoming traffic" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:540 +msgid "<guilabel>Out</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:541 +msgid "Outgoing traffic" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:544 +msgid "<guilabel>Local</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:545 +msgid "Traffic over loopback" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 +msgid "<guilabel>Background</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:549 +msgid "Graph background color" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:552 +msgid "<guilabel>Gridline</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:553 +msgid "Color of horizontal gridline when scaling graph" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:556 +msgid "<guilabel>Indicator</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:557 +msgid "Color of indicator showing which threshold was reached" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:585 +msgid "<guilabel>Used</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:587 +msgid "Swap space being used by the system" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:593 +msgid "Swap space that is free to be used" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:621 +msgid "<guilabel>Average</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:622 +msgid "System Load" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:626 +msgid "that is, no load" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:629 +msgid "<guilabel>Grid line</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:630 +msgid "Color of grid lines" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:657 +msgid "<guilabel>Read</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:658 +msgid "Disk read rate" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:661 +msgid "<guilabel>Write</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:662 +msgid "Disk write rate" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:666 +msgid "Idle disk time" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:676 +msgid "Network speed thresholds" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:677 +msgid "" +"Thresholds together with indicator allow network graph to scale and better " +"represent actual workload. If combined network traffic (in + out + loopback)" +" is below threshold1, no indicator is shown, y-axis on network graph go from" +" 0 to threshold1. When traffic is more than threshold1, one indicator will " +"be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," +" two indicators will be shown and y-axis go from 0 to threshold3. When " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " +"whatever is current maximum in graph." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:685 +msgid "Gridlines are hard to explain, just observe, and they are obvious." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "بەستەر" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/multiload/docs/ky/ky.po b/multiload/docs/ky/ky.po index 7eb74ad4..65be9d83 100644 --- a/multiload/docs/ky/ky.po +++ b/multiload/docs/ky/ky.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/la/la.po b/multiload/docs/la/la.po index 90b18a24..ed312a5f 100644 --- a/multiload/docs/la/la.po +++ b/multiload/docs/la/la.po @@ -1,14 +1,15 @@ # # Translators: # Vendelín Slezák <[email protected]>, 2018 +# Roger Herikstad, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Vendelín Slezák <[email protected]>, 2018\n" -"Language-Team: Latin (https://www.transifex.com/mate/teams/13566/la/)\n" +"Last-Translator: Roger Herikstad, 2023\n" +"Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -780,7 +781,7 @@ msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "" +msgstr "vinculum" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff --git a/multiload/docs/li/li.po b/multiload/docs/li/li.po index 435ba97f..e22a5f73 100644 --- a/multiload/docs/li/li.po +++ b/multiload/docs/li/li.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Limburgian (https://www.transifex.com/mate/teams/13566/li/)\n" +"Language-Team: Limburgian (https://app.transifex.com/mate/teams/13566/li/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/lt/lt.po b/multiload/docs/lt/lt.po index e6d74da1..fa71286f 100644 --- a/multiload/docs/lt/lt.po +++ b/multiload/docs/lt/lt.po @@ -1,16 +1,16 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Moo, 2018 # Džiugas Grėbliūnas <[email protected]>, 2020 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Džiugas Grėbliūnas <[email protected]>, 2020\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"Last-Translator: Moo, 2021\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,8 +47,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijos projektas</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE dokumentacijos projektas</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -788,7 +788,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/lv/lv.po b/multiload/docs/lv/lv.po index 180c2f82..0449581e 100644 --- a/multiload/docs/lv/lv.po +++ b/multiload/docs/lv/lv.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/mai/mai.po b/multiload/docs/mai/mai.po index aff4ca88..c82b5d89 100644 --- a/multiload/docs/mai/mai.po +++ b/multiload/docs/mai/mai.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/mg/mg.po b/multiload/docs/mg/mg.po index a3b00cca..9c4264fc 100644 --- a/multiload/docs/mg/mg.po +++ b/multiload/docs/mg/mg.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/mk/mk.po b/multiload/docs/mk/mk.po index 928455b3..86619202 100644 --- a/multiload/docs/mk/mk.po +++ b/multiload/docs/mk/mk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: exoos <[email protected]>, 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ml/ml.po b/multiload/docs/ml/ml.po index efd42328..bb276546 100644 --- a/multiload/docs/ml/ml.po +++ b/multiload/docs/ml/ml.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/mn/mn.po b/multiload/docs/mn/mn.po index d95ddb8c..ae3fee4b 100644 --- a/multiload/docs/mn/mn.po +++ b/multiload/docs/mn/mn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/mr/mr.po b/multiload/docs/mr/mr.po index fe5e2bac..b3092307 100644 --- a/multiload/docs/mr/mr.po +++ b/multiload/docs/mr/mr.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Vaibhav S Dalvi <[email protected]>, 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ms/ms.po b/multiload/docs/ms/ms.po index ffab208a..44202f13 100644 --- a/multiload/docs/ms/ms.po +++ b/multiload/docs/ms/ms.po @@ -2,15 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2019 -# abuyop <[email protected]>, 2020 +# abuyop <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: abuyop <[email protected]>, 2020\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"Last-Translator: abuyop <[email protected]>, 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Pojek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -847,7 +847,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" "Ambang bersama-sama dengan penunjuk membolehkan graf rangkaian diskalakan " @@ -855,8 +855,10 @@ msgstr "" "(masuk + keluar + gelung) di bawah ambang1, tiada penunjuk ditunjukkan, " "paksi-y pada graf rangkaian bermula dari 0 sehingga ke ambang1. Ketika " "trafik melebihi ambang1, satu penunjuk akan memaparkan paksi-y bermula dari " -"0 sehingga ambang2. Ketika ambang2 dicapai, tiga penunjuk dipaparkan dan " -"paksi-y dari 0 sehingga nilai maksimum semasa di dalam graf." +"0 sehingga ambang2. Ketika ambang2 dicapai, dua penunjuk akan ditunjukkan " +"dan paksi-y dari 0 sehingga ambang3. Apabila ambang3 dicapai tiga penunjuk " +"ditunjukkan dan paksi-y bermula dari 0 hingga apa jua nilai ialah maksimum " +"semasa di dalam graf." #. (itstool) path: sect2/para #: C/index.docbook:685 diff --git a/multiload/docs/nb/nb.po b/multiload/docs/nb/nb.po index 44ae0793..2581c636 100644 --- a/multiload/docs/nb/nb.po +++ b/multiload/docs/nb/nb.po @@ -3,15 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # Allan Nordhøy <[email protected]>, 2018 # Imre Kristoffer Eilertsen <[email protected]>, 2018 -# Kjell Cato Heskjestad <[email protected]>, 2019 +# Kaci Heskjestad, 2019 +# Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Kjell Cato Heskjestad <[email protected]>, 2019\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Last-Translator: Jan Sherdahl, 2021\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,7 +48,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -69,14 +70,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:53 C/index.docbook:118 msgid "MATE Documentation Project" -msgstr "" +msgstr "MATE dokumentasjonsprosjekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:56 C/index.docbook:135 C/index.docbook:144 #: C/index.docbook:155 msgid "GNOME Documentation Project" -msgstr "" +msgstr "GNOME dokumentasjonsprosjekt" #. (itstool) path: authorgroup/author #: C/index.docbook:63 @@ -124,7 +125,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:126 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:122 @@ -281,7 +282,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "Høyreklikk på panelet." #. (itstool) path: listitem/para #: C/index.docbook:249 @@ -298,7 +299,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klikk <guibutton>Legg til</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -519,7 +520,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Klikk <guibutton>OK</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -781,7 +782,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/nds/nds.po b/multiload/docs/nds/nds.po index a6879848..ccf3a9c6 100644 --- a/multiload/docs/nds/nds.po +++ b/multiload/docs/nds/nds.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ne/ne.po b/multiload/docs/ne/ne.po index 4a1a2b04..c48c6e87 100644 --- a/multiload/docs/ne/ne.po +++ b/multiload/docs/ne/ne.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: chautari <[email protected]>, 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/nl/nl.po b/multiload/docs/nl/nl.po index df2a8662..8dbb7667 100644 --- a/multiload/docs/nl/nl.po +++ b/multiload/docs/nl/nl.po @@ -2,15 +2,16 @@ # Translators: # Pjotr <[email protected]>, 2018 # dragnadh, 2018 -# René Devers <[email protected]>, 2018 +# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2018 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: René Devers <[email protected]>, 2018\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"Last-Translator: kaasknak, 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,7 +48,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -781,7 +782,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -828,6 +829,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " +"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " +"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " +"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " +"zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -844,6 +850,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " +"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " +"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " +"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " +"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" +" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " +"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " +"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " +"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " +"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -859,6 +877,17 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANPASTE VERSIE VAN " +"HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -867,3 +896,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" +" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " +"<_:orderedlist-1/>" diff --git a/multiload/docs/nn/nn.po b/multiload/docs/nn/nn.po index c07f7552..9f2cdd43 100644 --- a/multiload/docs/nn/nn.po +++ b/multiload/docs/nn/nn.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Andrew Rabbitt <[email protected]>, 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentasjonsprosjekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -772,7 +772,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/nso/nso.po b/multiload/docs/nso/nso.po index 74e2456b..a3f47cf4 100644 --- a/multiload/docs/nso/nso.po +++ b/multiload/docs/nso/nso.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/oc/oc.po b/multiload/docs/oc/oc.po index 81425522..633fd610 100644 --- a/multiload/docs/oc/oc.po +++ b/multiload/docs/oc/oc.po @@ -4,15 +4,15 @@ # Cédric Valmary <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 -# Quentin PAGÈS, 2020 +# Quentin PAGÈS, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Quentin PAGÈS, 2020\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"Last-Translator: Quentin PAGÈS, 2023\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" "Yannig Marchegay (Kokoyaya) <[email protected]> & Cédric Valmary " -"(totenoc.eu) <[email protected]>" +"(totenoc.eu) <[email protected]>, Quentin PAGÈS" #. (itstool) path: articleinfo/title #: C/index.docbook:22 @@ -40,8 +40,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -186,6 +186,10 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"Per senhalar una avaria o per formular una suggestion a prepaus de l’applet " +"Monitor sistèma o aqueste manual, seguissètz las instruccions dins la <ulink" +" url=\"help:mate-user-guide/feedback\" type=\"help\">pagina de comentaris de" +" MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:172 @@ -349,7 +353,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>Ret</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 @@ -781,7 +785,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -805,6 +809,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste " +"document segon los tèrmes de la Licéncia GNU Free Documentation License " +"(GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation " +"sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de" +" darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent" +" aqueste <_:ulink-1/> o dins lo fichièr COPYING-DOCS provesit amb lo present" +" manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -814,6 +825,11 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols " +"tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir " +"aqueste document a despart de la colleccion, o podètz far en ajustant un " +"exemplar de la licéncia al manual, coma indicat a la seccion 6 de la " +"licéncia." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -824,6 +840,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"La màger part dels noms utilizats per las entrepresas per distinguir lors " +"produches e servicis son de marcas depausadas. Quand aqueles noms apareisson" +" dins la documentacion MATE e que los membres del projècte de Documentacion " +"MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles " +"noms entièrs, siá lor primièra letra es en majuscula." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -840,6 +861,19 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE " +"QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS " +"GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE " +"DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE " +"ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS " +"QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE " +"PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL " +"RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, " +"L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA," +" REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA " +"CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION " +"D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA " +"DESCARGA DE GARANTIDA E" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -855,6 +889,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE " +"RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR," +" LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT" +" O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS " +"RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O " +"ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES " +"LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS " +"DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A " +"L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS " +"S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -864,4 +908,5 @@ msgid "" "<_:orderedlist-1/>" msgstr "" "LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS" -" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE :" +" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : " +"<_:orderedlist-1/>" diff --git a/multiload/docs/or/or.po b/multiload/docs/or/or.po index 0e1d4e2d..5d1dc366 100644 --- a/multiload/docs/or/or.po +++ b/multiload/docs/or/or.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/pa/pa.po b/multiload/docs/pa/pa.po index 3be980bc..ed74a40b 100644 --- a/multiload/docs/pa/pa.po +++ b/multiload/docs/pa/pa.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Wolfgang Ulbrich <[email protected]>, 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -773,7 +773,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/pl/pl.po b/multiload/docs/pl/pl.po index 8a9343b2..6d80cc49 100644 --- a/multiload/docs/pl/pl.po +++ b/multiload/docs/pl/pl.po @@ -4,21 +4,22 @@ # Piotr Strębski <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 # Kajetan Rosiak <[email protected]>, 2018 -# pietrasagh <[email protected]>, 2018 +# pietrasagh <[email protected]>, 2018 # Adam Czabara <[email protected]>, 2018 # Dominik Adrian Grzywak, 2018 # Przemek P <[email protected]>, 2019 # Marcin GTriderXC <[email protected]>, 2019 # Jan Bońkowski <[email protected]>, 2019 -# Daniel Tokarzewski <[email protected]>, 2020 +# Szymon Blaut <[email protected]>, 2021 +# Daniel Tokarzewski <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Daniel Tokarzewski <[email protected]>, 2020\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"Last-Translator: Daniel Tokarzewski <[email protected]>, 2021\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,8 +49,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year><holder>Projekt Dokumentacji MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>dokumentacja projektu MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -784,7 +785,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -858,6 +859,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK " +"WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE " +"DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB" +" DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, " +"DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU " +"SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA " +"WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY " +"PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH " +"SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI " +"ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI " +"NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB " +"ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ " #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -873,6 +886,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM" +" ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, " +"WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU " +"TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA " +"JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE " +"SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ " +"WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB " +"STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI " +"DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA" +" TAKICH SZKÓD." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -881,3 +904,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH " +"LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, " +"ŻE:<_:orderedlist-1/>" diff --git a/multiload/docs/ps/ps.po b/multiload/docs/ps/ps.po index ec9934be..234a85ed 100644 --- a/multiload/docs/ps/ps.po +++ b/multiload/docs/ps/ps.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/pt/pt.po b/multiload/docs/pt/pt.po index bb0f522e..c473d6fd 100644 --- a/multiload/docs/pt/pt.po +++ b/multiload/docs/pt/pt.po @@ -3,24 +3,24 @@ # Carlos Moreira, 2018 # fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2018 # ogalho Carlos Dias Martins <[email protected]>, 2018 -# Manuela Silva <[email protected]>, 2018 +# Manuela Silva <[email protected]>, 2018 # Manel Tinoco <[email protected]>, 2018 # Rui <[email protected]>, 2018 -# José Vieira <[email protected]>, 2020 # Hugo Carvalho <[email protected]>, 2020 +# José Vieira <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Hugo Carvalho <[email protected]>, 2020\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Last-Translator: José Vieira <[email protected]>, 2021\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -41,9 +41,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecto de Documentação do MATE</holder>" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -795,7 +795,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/pt_BR/pt_BR.po b/multiload/docs/pt_BR/pt_BR.po index 448a3762..1aecb2b7 100644 --- a/multiload/docs/pt_BR/pt_BR.po +++ b/multiload/docs/pt_BR/pt_BR.po @@ -8,24 +8,25 @@ # Italo Penaforte <[email protected]>, 2018 # Rangel <[email protected]>, 2018 # Alceu Nogueira <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 # Jota Freitas Jr <[email protected]>, 2019 # Xerxes Lins <[email protected]>, 2019 -# George Silva <[email protected]>, 2020 +# George Silva <[email protected]>, 2019 # Brayan Soares <[email protected]>, 2020 +# Luciano Luck, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Brayan Soares <[email protected]>, 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"Last-Translator: Luciano Luck, 2022\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -69,8 +70,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Projeto de documentação</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -821,7 +823,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ro/ro.po b/multiload/docs/ro/ro.po index 1ae37397..1de5c06a 100644 --- a/multiload/docs/ro/ro.po +++ b/multiload/docs/ro/ro.po @@ -2,14 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Daniel <[email protected]>, 2018 +# sidro <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Daniel <[email protected]>, 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"Last-Translator: sidro <[email protected]>, 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -100,7 +101,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:117 msgid "MATE Documentation Team" -msgstr "" +msgstr "Echipa de documentare MATE" #. (itstool) path: revhistory/revision #: C/index.docbook:113 @@ -769,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ru/ru.po b/multiload/docs/ru/ru.po index 5b0c1d72..fe542fbf 100644 --- a/multiload/docs/ru/ru.po +++ b/multiload/docs/ru/ru.po @@ -1,22 +1,24 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Дмитрий Михирев, 2018 # AlexL <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Alex Putz, 2018 +# Alex Puts, 2018 +# Aleksey Kabanov <[email protected]>, 2018 # Артур Мальцев <[email protected]>, 2019 # Александр Кураченко <[email protected]>, 2019 -# Olesya Gerasimenko <[email protected]>, 2020 -# Aleksey Kabanov <[email protected]>, 2020 +# Иван Л. <[email protected]>, 2021 +# Sergej A. <[email protected]>, 2022 +# Olesya Gerasimenko <[email protected]>, 2022 +# slichtzzz, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Aleksey Kabanov <[email protected]>, 2020\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"Last-Translator: slichtzzz, 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,12 +59,12 @@ msgstr "" "Сергей Панов <[email protected]>\n" "Сергей Яковлев\n" "Юрий Козлов <[email protected]>\n" -"Evolve32 <[email protected]>" +"Evolve32 <[email protected]> Сергей Казорин <[email protected]>" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "" +msgstr "Руководство пользователя по апплету «Системный монитор»" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -70,11 +72,13 @@ msgid "" "System Monitor displays system load information in graphical format in a " "panel." msgstr "" +"«Системный монитор» выводит на панели графическое отображение загрузки " +"системы." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015—2020</year> <holder>Проект документирования MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документирования MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -89,7 +93,7 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004 г.</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -110,6 +114,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Команда документирования MATE</firstname> <surname/> " +"<affiliation> <orgname>Рабочий стол MATE</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -118,6 +124,9 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -126,6 +135,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>Проект документирования GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -134,6 +146,9 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>Проект GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:117 @@ -146,11 +161,13 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Системный монитор V2.12</revnumber> <date>Июль 2015</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 msgid "Davyd Madeley" -msgstr "" +msgstr "Давид Мэдли" #. (itstool) path: revhistory/revision #: C/index.docbook:122 @@ -164,7 +181,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -172,6 +189,8 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Версия 2.8</revnumber> <date>Август 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 @@ -184,11 +203,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Системный монитор» " +"V2.1</revnumber> <date>Февраль 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Chee Bin HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -196,11 +217,14 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Системный монитор» " +"V2.0</revnumber> <date>Июль 2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." msgstr "" +"В этом руководстве описывается версия 1.10.2 апплета «Системный монитор»." #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -214,11 +238,15 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"Чтобы сообщить об ошибке или внести предложение относительно апплета " +"«Системный монитор» или этого руководства, следуйте инструкциям на <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">Странице обратной связи " +"MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>Апплет «Системный монитор»</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 @@ -246,6 +274,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -254,6 +284,9 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>Показывает апплет " +"«Системный монитор» c отображением загрузки ЦП. </phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -263,41 +296,45 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" +"<application>«Системный монитор»</application> отображает информациюо " +"загрузке системы на панели в графическом формате. <application> «Системный " +"монитор»</application> можно настроить на вывод следующей информации о " +"системе:" #. (itstool) path: listitem/para #: C/index.docbook:209 msgid "Usage of CPU (central processing unit) time" -msgstr "" +msgstr "Использование времени ЦП (центрального процессора)" #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "Использование памяти" #. (itstool) path: listitem/para #: C/index.docbook:219 msgid "Network traffic" -msgstr "" +msgstr "Сетевой трафик" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "Использование области подкачки" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Average system load" -msgstr "" +msgstr "Средняя загрузка системы" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "Загрузка диска" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "" +msgstr "Добавление апплета «Системный монитор» на панель" #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -305,16 +342,18 @@ msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" msgstr "" +"Чтобы добавить апплет <application>«Системный монитор»</application> на " +"панель, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "Щёлкните правой кнопкой на панели." +msgstr "Щёлкните правой кнопкой мыши по панели." #. (itstool) path: listitem/para #: C/index.docbook:249 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "Выберите <guimenuitem>Добавить на панель</guimenuitem>." +msgstr "Выберите <guimenuitem>«Добавить на панель»</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -322,11 +361,14 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" +"Прокрутите вниз список элементов в диалоговом окне <guilabel> «Добавить на " +"панель»</guilabel>, затем выберите <guilabel> «Системный " +"монитор»</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "Нажмите <guibutton>Добавить</guibutton>." +msgstr "Нажмите <guibutton>«Добавить»</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -334,16 +376,18 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" +"Компоновка апплета <application>«Системный монитор»</application> может " +"изменяться в зависимости от размера и типа панели, на которую он помещён." #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "" +msgstr "Просмотр графиков" #. (itstool) path: sect2/title #: C/index.docbook:280 msgid "Displaying Additional Graphs" -msgstr "" +msgstr "Отображение дополнительных графиков" #. (itstool) path: sect2/para #: C/index.docbook:281 @@ -353,16 +397,21 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" +"Чтобы настроить апплет <application>«Системный монитор»</application>, " +"щёлкните правой кнопкой мыши по апплету и в контекстном меню выберите " +"<guimenuitem> «Настройка»</guimenuitem>. Там в разделе <guilabel> " +"«Отслеживаемые ресурсы» </guilabel> можно выбрать графический формат " +"отображения:" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 msgid "<guilabel>Processor</guilabel>" -msgstr "" +msgstr "<guilabel>Процессор</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:287 msgid "Select this option to display the graph for CPU usage." -msgstr "" +msgstr "Выберите этот параметр для отображения графика по использованию ЦП." #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 @@ -373,51 +422,56 @@ msgstr "<guilabel>Память</guilabel>" #: C/index.docbook:295 msgid "Select this option to display the graph for memory usage." msgstr "" +"Выберите этот параметр для отображения графика по использованию памяти." #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>Сеть</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." -msgstr "" +msgstr "Выберите этот параметр для отображения графика по сетевому трафику" #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 msgid "<guilabel>Swap Space</guilabel>" -msgstr "" +msgstr "<guilabel>Область подкачки</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:311 msgid "Select this option to display the graph for swap-space usage." msgstr "" +"Выберите этот параметр для отображения графика по использованию области " +"подкачки." #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>Загрузка</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 msgid "Select this option to display the graph for average system load." msgstr "" +"Выберите этот параметр для отображения графика средней загрузки системы." #. (itstool) path: listitem/para #: C/index.docbook:324 C/index.docbook:637 msgid "<guilabel>Harddisk</guilabel>" -msgstr "" +msgstr "<guilabel>Жёсткий диск</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:325 msgid "Select this option to display the graph for disk usage." msgstr "" +"Выберите этот параметр для отображения графика по использованию диска." #. (itstool) path: sect2/title #: C/index.docbook:333 msgid "To Display the Current Usage of a System Resource" -msgstr "" +msgstr "Отображение текущего использования ресурса системы" #. (itstool) path: sect2/para #: C/index.docbook:334 @@ -426,11 +480,14 @@ msgid "" "pointer over the corresponding graph in the applet. A tooltip displays the " "current usage as a percentage." msgstr "" +"Для отображения текущего использования какого-либо ресурса системы " +"необходимо поместить указатель мыши над соответствующим графиком апплета. В " +"подсказке отобразится текущее использование ресурса в процентах." #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "" +msgstr "Отображение дополнительной информации «Системного монитора»" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -439,6 +496,10 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" +"Чтобы отобразить дополнительную информацию «Системного монитора», щёлкните " +"правой клавишей мыши по апплету и в контекстном меню выберите <guimenuitem> " +"«Открыть системный монитор»</guimenuitem> для запуска приложения " +"<application>«Системный монитор»</application>." #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -448,16 +509,19 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" +"Приложение <application>«Системный монитор»</application> отслеживает " +"системные процессы и использование системных ресурсов. Данное приложение " +"может быть использовано для изменения поведения системы." #. (itstool) path: sect1/title #: C/index.docbook:360 msgid "Customizing Appearance" -msgstr "" +msgstr "Настройка внешнего вида" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "Диалоговое окно параметров" +msgstr "Диалоговое окно настройки параметров" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -470,6 +534,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -478,11 +544,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Диалоговое окно " +"настройки параметров</phrase> </textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 msgid "To Change the Width" -msgstr "" +msgstr "Изменение ширины" #. (itstool) path: sect2/para #: C/index.docbook:377 @@ -492,11 +561,15 @@ msgid "" "width</guilabel> spin box to specify the width of each <application>System " "Monitor</application> graph in pixels." msgstr "" +"В контекстном меню выберите элемент <guimenuitem>«Настройка»</guimenuitem>. " +"В разделе <guilabel>«Опции»</guilabel> находится регулятор поля <guilabel> " +"«Ширина системного монитора» </guilabel>, в котором можно указать ширину " +"каждого графика <application>«Системного монитора»</application> в пикселах." #. (itstool) path: sect2/title #: C/index.docbook:380 msgid "To Update at Regular Intervals" -msgstr "" +msgstr "Установка интервала обновления" #. (itstool) path: sect2/para #: C/index.docbook:381 @@ -506,16 +579,20 @@ msgid "" "interval</guilabel> spin box to specify the interval at which you want to " "update the graphs in milliseconds." msgstr "" +"В контекстном меню выберите элемент<guimenuitem>«Настройка»</guimenuitem>. В" +" разделе <guilabel>«Опции»</guilabel> находится регулятор поля <guilabel> " +"«Интервал обновления системного монитора» </guilabel>, в котором можно " +"указать интервал обновления графиков в миллисекундах." #. (itstool) path: sect2/title #: C/index.docbook:386 msgid "Changing the Colors in a Graph" -msgstr "" +msgstr "Изменение цветов на графике" #. (itstool) path: sect2/para #: C/index.docbook:387 msgid "To change the colors in a graph, perform the following steps:" -msgstr "" +msgstr "Чтобы изменить цвета на графике, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:392 @@ -523,6 +600,8 @@ msgid "" "Right-click on the applet, then choose " "<guimenuitem>Preferences</guimenuitem>." msgstr "" +"Щёлкните правой кнопкой мыши по апплету и в контекстном меню выберите " +"<guimenuitem>«Настройка»</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:397 @@ -530,12 +609,14 @@ msgid "" "Select the relevant tab in the <guilabel>Colors</guilabel> area of the " "<guilabel>System Monitor Preferences</guilabel> dialog." msgstr "" +"Выберите соответствующую вкладку в разделе <guilabel>«Цвета»</guilabel> " +"диалогового окна <guilabel>«Параметры системного монитора»</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." -msgstr "" +msgstr "Щёлкните по соответствующей кнопке выбора цвета на выбранной вкладке." #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -543,6 +624,8 @@ msgid "" "On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" " boxes to choose the line color for the selected parameter." msgstr "" +"В диалоговом окне <guilabel>«Выбор цвета»</guilabel> подберите цвет линии " +"для выбранного параметра с помощью цветового круга или регулятора." #. (itstool) path: listitem/para #: C/index.docbook:415 @@ -555,6 +638,8 @@ msgid "" "The tabbed section for each resource provides color selection buttons that " "you can use to change the color of the parameters for each resource." msgstr "" +"В разделе с вкладками для каждого ресурса помещены кнопки выбора цвета, " +"которые позволяют изменить цвет параметров для каждого ресурса." #. (itstool) path: listitem/para #: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 @@ -562,12 +647,14 @@ msgstr "" msgid "" "Select this tab to display the color buttons for the following parameters:" msgstr "" +"Выберите эту вкладку для отображения кнопок выбора цвета следующих " +"параметров:" #. (itstool) path: entry/para #: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 #: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 msgid "Parameter" -msgstr "" +msgstr "Параметр" #. (itstool) path: entry/para #: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 @@ -583,7 +670,7 @@ msgstr "<guilabel>Пользователь</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:447 msgid "Processor time used by non-kernel activities" -msgstr "" +msgstr "Затраты процессорного времени на действия, не связанные с ядром" #. (itstool) path: entry/para #: C/index.docbook:450 @@ -593,207 +680,209 @@ msgstr "<guilabel>Система</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 msgid "Processor time used by kernel activities" -msgstr "" +msgstr "Затраты процессорного времени на действия, связанные с ядром" #. (itstool) path: entry/para #: C/index.docbook:454 msgid "<guilabel>Nice</guilabel>" -msgstr "" +msgstr "<guilabel>Приоритет</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:455 msgid "Processor time used by low-priority processes" -msgstr "" +msgstr "Затраты процессорного времени на процессы с низким приоритетом" #. (itstool) path: entry/para #: C/index.docbook:458 msgid "<guilabel>IOWait</guilabel>" -msgstr "" +msgstr "<guilabel>IOWait</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:460 msgid "Processor time used waiting for I/O" -msgstr "" +msgstr "Затраты процессорного времени на ожидание ввода/вывода" #. (itstool) path: entry/para #: C/index.docbook:464 msgid "<guilabel>Idle</guilabel>" -msgstr "" +msgstr "<guilabel>Неактивность</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:465 msgid "Unused processor capacity" -msgstr "" +msgstr "Неиспользованные возможности процессора" #. (itstool) path: entry/para #: C/index.docbook:493 msgid "Memory used by non-kernel activities" -msgstr "" +msgstr "Затраты памяти на действия, не связанные с ядром" #. (itstool) path: entry/para #: C/index.docbook:496 msgid "<guilabel>Shared</guilabel>" -msgstr "" +msgstr "<guilabel>Разделяемая</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:497 msgid "Memory used by more than one application" -msgstr "" +msgstr "Память, используемая несколькими приложениями" #. (itstool) path: entry/para #: C/index.docbook:500 msgid "<guilabel>Buffers</guilabel>" -msgstr "" +msgstr "<guilabel>Буфера</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" msgstr "" +"Память, используемая для временного хранения отправляемых или получаемых " +"данных" #. (itstool) path: entry/para #: C/index.docbook:504 msgid "<guilabel>Cached</guilabel>" -msgstr "" +msgstr "<guilabel>Кэшированная</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "" +msgstr "Память для быстрого доступа к хранящимся данным" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 msgid "<guilabel>Free</guilabel>" -msgstr "" +msgstr "<guilabel>Свободная</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "" +msgstr "Неиспользуемая память" #. (itstool) path: entry/para #: C/index.docbook:536 msgid "<guilabel>In</guilabel>" -msgstr "" +msgstr "<guilabel>Входящий</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:537 msgid "Incoming traffic" -msgstr "" +msgstr "Входящий сетевой трафик" #. (itstool) path: entry/para #: C/index.docbook:540 msgid "<guilabel>Out</guilabel>" -msgstr "" +msgstr "<guilabel>Исходящий</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:541 msgid "Outgoing traffic" -msgstr "" +msgstr "Исходящий сетевой трафик" #. (itstool) path: entry/para #: C/index.docbook:544 msgid "<guilabel>Local</guilabel>" -msgstr "" +msgstr "<guilabel>Локальный</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:545 msgid "Traffic over loopback" -msgstr "" +msgstr "Сетевой трафик на loopback-интерфейсе" #. (itstool) path: entry/para #: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 msgid "<guilabel>Background</guilabel>" -msgstr "" +msgstr "<guilabel>Фон</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "" +msgstr "Цвет фона графика" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "" +msgstr "<guilabel>Линия сетки</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "" +msgstr "Цвет горизонтальной линии сетки при изменении масштаба графика" #. (itstool) path: entry/para #: C/index.docbook:556 msgid "<guilabel>Indicator</guilabel>" -msgstr "" +msgstr "<guilabel>Индикатор</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:557 msgid "Color of indicator showing which threshold was reached" -msgstr "" +msgstr "Цвет индикатора, отображающего достигнутый предел" #. (itstool) path: entry/para #: C/index.docbook:585 msgid "<guilabel>Used</guilabel>" -msgstr "" +msgstr "<guilabel>Использовано</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:587 msgid "Swap space being used by the system" -msgstr "" +msgstr "Область подкачки, используемая системой" #. (itstool) path: entry/para #: C/index.docbook:593 msgid "Swap space that is free to be used" -msgstr "" +msgstr "Неиспользованная область подкачки" #. (itstool) path: entry/para #: C/index.docbook:621 msgid "<guilabel>Average</guilabel>" -msgstr "" +msgstr "<guilabel>Средняя</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:622 msgid "System Load" -msgstr "" +msgstr "Загрузка системы" #. (itstool) path: entry/para #: C/index.docbook:626 msgid "that is, no load" -msgstr "" +msgstr "Означает работу без нагрузки" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "" +msgstr "<guilabel>Линия сетки</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 msgid "Color of grid lines" -msgstr "" +msgstr "Цвет линий сетки" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>Чтение</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 msgid "Disk read rate" -msgstr "" +msgstr "Скорость чтения диска" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>Запись</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 msgid "Disk write rate" -msgstr "" +msgstr "Скорость записи диска" #. (itstool) path: entry/para #: C/index.docbook:666 msgid "Idle disk time" -msgstr "" +msgstr "Время неактивности диска" #. (itstool) path: sect2/title #: C/index.docbook:676 @@ -809,14 +898,24 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" +"Пределы и индикаторы позволяют масштабировать график сети длясоздания более " +"наглядного представления фактической рабочей загрузки. Когда суммарный " +"сетевой трафик (входящий + исходящий + loopback) не достигает предела 1, " +"индикаторы не отображаются, а ось Y на графике сети выводится в диапазоне от" +" 0 до предела 1. Когда объём трафика превышает предел 1, отображается один " +"индикатор, а ось Y выводится в диапазоне от 0 до предела 2. При достижении " +"предела 2 отображается уже два индикатора, а ось Y выводится в диапазоне от " +"0 до предела 3. При достижении предела 3, отображается три индикатора, а " +"диапазон оси Y выводится от 0 до максимального значения на графике." #. (itstool) path: sect2/para #: C/index.docbook:685 msgid "Gridlines are hard to explain, just observe, and they are obvious." msgstr "" +"Линии сетки проще увидеть, чем описать, тем более что они слишком заметны." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/multiload/docs/si/si.po b/multiload/docs/si/si.po index 6c906fd4..e8d7e97c 100644 --- a/multiload/docs/si/si.po +++ b/multiload/docs/si/si.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/sk/sk.po b/multiload/docs/sk/sk.po index 5acd4325..cc0dd4a7 100644 --- a/multiload/docs/sk/sk.po +++ b/multiload/docs/sk/sk.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Ján Ďanovský <[email protected]>, 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -776,7 +776,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/sl/sl.po b/multiload/docs/sl/sl.po index 741a44c0..cfabdc86 100644 --- a/multiload/docs/sl/sl.po +++ b/multiload/docs/sl/sl.po @@ -1,17 +1,17 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Damir Mevkić <[email protected]>, 2019 +# Damir Mevkić 52K <[email protected]>, 2019 # Arnold Marko <[email protected]>, 2020 # Helena S <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Helena S <[email protected]>, 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,8 +37,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/sq/sq.po b/multiload/docs/sq/sq.po index 4218d00b..22e4b75e 100644 --- a/multiload/docs/sq/sq.po +++ b/multiload/docs/sq/sq.po @@ -3,15 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Alban <[email protected]>, 2018 # Indrit Bashkimi <[email protected]>, 2018 -# Ardit Dani <[email protected]>, 2019 +# Ardit Dani <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Ardit Dani <[email protected]>, 2019\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Last-Translator: Ardit Dani <[email protected]>, 2021\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -774,7 +774,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" @@ -807,6 +807,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara " +"nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, " +"mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në" +" seksionin 6 të licencës." #. (itstool) path: legalnotice/para #: C/legal.xml:19 diff --git a/multiload/docs/sr/sr.po b/multiload/docs/sr/sr.po index c92f5ce7..b27b57f3 100644 --- a/multiload/docs/sr/sr.po +++ b/multiload/docs/sr/sr.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Мирослав Николић <[email protected]>, 2020 +# Мирослав Николић <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Мирослав Николић <[email protected]>, 2020\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Last-Translator: Мирослав Николић <[email protected]>, 2021\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ msgstr "Мирослав Николић <[email protected]>" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "System Monitor Manual" -msgstr "" +msgstr "Упутство праћења система" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -32,12 +32,14 @@ msgid "" "System Monitor displays system load information in graphical format in a " "panel." msgstr "" +"Праћење система приказује информације о оптерећењу система у графичком " +"облику на панелу." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Пројекат Мејтове документације</holder>" +"<year>2015-2021</year> <holder>Пројекат Мејтове документације</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -47,12 +49,12 @@ msgstr "<year>2005</year> <holder>Дејвид Мадлеј</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:35 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -83,6 +85,8 @@ msgid "" "<affiliation><address> <email>[email protected]</email> " "</address></affiliation>" msgstr "" +"<firstname>Анђела</firstname> <surname>Бојл</surname> <affiliation><address>" +" <email>[email protected]</email> </address></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:79 @@ -91,6 +95,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Чи Бин</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>Пројекат Гномове документације</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:88 @@ -114,6 +121,8 @@ msgid "" "<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Праћење система и2.12</revnumber> <date>Јул 2015</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:126 @@ -126,11 +135,13 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Издање 2.10</revnumber> <date>Март 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:134 msgid "Angela Boyle" -msgstr "" +msgstr "Анђела Бојл" #. (itstool) path: revhistory/revision #: C/index.docbook:130 @@ -138,11 +149,13 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Издање 2.8</revnumber> <date>Август 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Тим Sun Гномове документације" #. (itstool) path: revhistory/revision #: C/index.docbook:139 @@ -150,11 +163,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета Праћења система и2.1</revnumber> " +"<date>Фебруар 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:152 msgid "Chee Bin HOH <email>[email protected]</email>" -msgstr "" +msgstr "Чи Бин HOH <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:148 @@ -162,11 +177,13 @@ msgid "" "<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета Праћења система и2.0</revnumber> <date>Јул " +"2004</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:161 msgid "This manual describes version 1.10.2 of System Monitor." -msgstr "" +msgstr "Ово упутство описује издање 1.10.2 Пратиоца система." #. (itstool) path: legalnotice/title #: C/index.docbook:164 @@ -180,16 +197,19 @@ msgid "" "this manual, follow the directions in the <ulink url=\"help:mate-user-" "guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." msgstr "" +"Да бисте пријавили грешку или дали предлог у вези програмчета Праћења " +"система и овог упутства, пратите смернице на <ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">Мејтовој страници за примедбе</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:172 msgid "<primary>System Monitor Applet</primary>" -msgstr "" +msgstr "<primary>Програмче за праћење система</primary>" #. (itstool) path: article/indexterm #: C/index.docbook:175 msgid "<primary>System Monitor</primary>" -msgstr "" +msgstr "<primary>Праћење система</primary>" #. (itstool) path: sect1/title #: C/index.docbook:182 @@ -212,6 +232,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -220,6 +242,10 @@ msgid "" " format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " "Displays a graph for system CPU load. </phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>Приказује пратиоца " +"система. Приказује график за оптерећење процесора система. </phrase> " +"</textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -229,41 +255,45 @@ msgid "" "<application>System Monitor</application> to display the following " "information for your system:" msgstr "" +"„<application>Праћење система</application>“ приказује информације о " +"оптерећењу система у графичком облику на панелу. Можете да подесите " +"„<application>Пратиоца система</application>“ да прикаже следеће информације" +" вашег система:" #. (itstool) path: listitem/para #: C/index.docbook:209 msgid "Usage of CPU (central processing unit) time" -msgstr "" +msgstr "Време коришћења процесора" #. (itstool) path: listitem/para #: C/index.docbook:214 msgid "Memory usage" -msgstr "" +msgstr "Искоришћеност меморије" #. (itstool) path: listitem/para #: C/index.docbook:219 msgid "Network traffic" -msgstr "" +msgstr "Мрежни саобраћај" #. (itstool) path: listitem/para #: C/index.docbook:224 msgid "Usage of swap space" -msgstr "" +msgstr "Искоришћеност разменске меморије" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Average system load" -msgstr "" +msgstr "Просечно оптерећење система" #. (itstool) path: listitem/para #: C/index.docbook:233 msgid "Disk load" -msgstr "" +msgstr "Оптерећење диска" #. (itstool) path: sect2/title #: C/index.docbook:237 msgid "To Add System Monitor to a Panel" -msgstr "" +msgstr "Додавање програмчета на панел" #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -271,11 +301,13 @@ msgid "" "To add <application>System Monitor</application> to a panel, perform the " "following steps:" msgstr "" +"Да додате „<application>Праћење система</application>“ на панел, урадите " +"следеће:" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "Кликните десним тастером миша на панел." #. (itstool) path: listitem/para #: C/index.docbook:249 @@ -288,6 +320,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>System Monitor</guilabel>." msgstr "" +"Премакните на доле списак ставки у прозорчету „<guilabel>Додај на " +"панел</guilabel>“, затим изаберите „<guilabel>Праћење система</guilabel>“." #. (itstool) path: listitem/para #: C/index.docbook:260 @@ -300,16 +334,18 @@ msgid "" "The layout of the <application>System Monitor</application> varies depending" " on the size and type of panel in which the applet resides." msgstr "" +"Изглед „<application>Праћења система</application>“ варира у зависности од " +"величине и врсте панела на коме се налази." #. (itstool) path: sect1/title #: C/index.docbook:277 msgid "Viewing Graphs" -msgstr "" +msgstr "Графици прегледа" #. (itstool) path: sect2/title #: C/index.docbook:280 msgid "Displaying Additional Graphs" -msgstr "" +msgstr "Приказивање додатних графика" #. (itstool) path: sect2/para #: C/index.docbook:281 @@ -319,71 +355,77 @@ msgid "" "Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" " you want to display:" msgstr "" +"Да подесите програмче „<application>Праћење система</application>“, десни " +"клик на панел, затим изаберите „<guimenuitem>Поставке</guimenuitem>“. У делу" +" „<guilabel>Праћени ресурси</guilabel>“ можете изабрати графике које желите " +"да прикажете:" #. (itstool) path: listitem/para #: C/index.docbook:284 C/index.docbook:426 msgid "<guilabel>Processor</guilabel>" -msgstr "" +msgstr "<guilabel>Процесор</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:287 msgid "Select this option to display the graph for CPU usage." -msgstr "" +msgstr "Изаберите ову опцију да прикажете график коришћења процесора." #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 msgid "<guilabel>Memory</guilabel>" -msgstr "" +msgstr "<guilabel>Меморија</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Select this option to display the graph for memory usage." -msgstr "" +msgstr "Изаберите ову опцију да прикажете график коришћења меморије." #. (itstool) path: listitem/para #: C/index.docbook:300 C/index.docbook:516 msgid "<guilabel>Network</guilabel>" -msgstr "" +msgstr "<guilabel>Мрежа</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:303 msgid "Select this option to display the graph for network traffic." -msgstr "" +msgstr "Изаберите ову опцију да прикажете график мрежног саобраћаја." #. (itstool) path: listitem/para #: C/index.docbook:308 C/index.docbook:565 msgid "<guilabel>Swap Space</guilabel>" -msgstr "" +msgstr "<guilabel>Разменска меморија</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:311 msgid "Select this option to display the graph for swap-space usage." msgstr "" +"Изаберите ову опцију да прикажете график коришћења разменског простора." #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>Оптерећење</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 msgid "Select this option to display the graph for average system load." msgstr "" +"Изаберите ову опцију да прикажете график просечног оптерећења система." #. (itstool) path: listitem/para #: C/index.docbook:324 C/index.docbook:637 msgid "<guilabel>Harddisk</guilabel>" -msgstr "" +msgstr "<guilabel>Чврсти диск</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:325 msgid "Select this option to display the graph for disk usage." -msgstr "" +msgstr "Изаберите ову опцију да прикажете график коришћења диска." #. (itstool) path: sect2/title #: C/index.docbook:333 msgid "To Display the Current Usage of a System Resource" -msgstr "" +msgstr "Приказивање тренутног коришћења ресурса система" #. (itstool) path: sect2/para #: C/index.docbook:334 @@ -392,11 +434,14 @@ msgid "" "pointer over the corresponding graph in the applet. A tooltip displays the " "current usage as a percentage." msgstr "" +"Да прикажете тренутно коришћење ресурса система, поставите показивач миша " +"над одговарајућим графиком у програмчету. Облачић ће приказати тренутно " +"коришћење у процентима." #. (itstool) path: sect2/title #: C/index.docbook:342 msgid "To Display Additional System Monitor Information" -msgstr "" +msgstr "Приказивање додатних информација праћења система" #. (itstool) path: sect2/para #: C/index.docbook:343 @@ -405,6 +450,9 @@ msgid "" " then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " "<application>System Monitor</application> application." msgstr "" +"Да прикажете додатне информације праћења система, десни клик на програмче, " +"затим изаберите „<guimenuitem>Отвори праћење система</guimenuitem>“ да " +"покренете програм „<application>Праћење система</application>“." #. (itstool) path: sect2/para #: C/index.docbook:348 @@ -414,16 +462,20 @@ msgid "" "<application>System Monitor</application> application to modify the behavior" " of your system." msgstr "" +"Програм „<application>Праћење система</application>“ вам омогућава да " +"пратите процесе система и искоришћеност ресурса система. Можете да користите" +" програм „<application>Праћење система</application>“ да измените понашање " +"вашег система." #. (itstool) path: sect1/title #: C/index.docbook:360 msgid "Customizing Appearance" -msgstr "" +msgstr "Прилагођавање изгледа" #. (itstool) path: figure/title #: C/index.docbook:362 msgid "Preferences Dialog" -msgstr "" +msgstr "Прозорче поставки" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -436,6 +488,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -444,11 +498,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " "</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Прозорче поставки " +"</phrase> </textobject>" #. (itstool) path: sect2/title #: C/index.docbook:376 msgid "To Change the Width" -msgstr "" +msgstr "Промена ширине" #. (itstool) path: sect2/para #: C/index.docbook:377 @@ -458,11 +515,15 @@ msgid "" "width</guilabel> spin box to specify the width of each <application>System " "Monitor</application> graph in pixels." msgstr "" +"У изборнику десног клика, идите на „<guimenuitem>Поставке</guimenuitem>“. У " +"делу „<guilabel>Опције</guilabel>“, користите вртешку „<guilabel>Ширина " +"програмчета</guilabel>“ да одредите ширину сваког графика " +"„<application>Праћења система</application>“ у пикселима." #. (itstool) path: sect2/title #: C/index.docbook:380 msgid "To Update at Regular Intervals" -msgstr "" +msgstr "Освежавање у одређеном времену" #. (itstool) path: sect2/para #: C/index.docbook:381 @@ -472,16 +533,20 @@ msgid "" "interval</guilabel> spin box to specify the interval at which you want to " "update the graphs in milliseconds." msgstr "" +"У изборнику десног клика, идите на „<guimenuitem>Поставке</guimenuitem>“. У " +"делу „<guilabel>Опције</guilabel>“, користите вртешку „<guilabel>Време " +"између два освежавања приказа</guilabel>“ да одредите период у милисекундама" +" у коме желите да освежавате графике." #. (itstool) path: sect2/title #: C/index.docbook:386 msgid "Changing the Colors in a Graph" -msgstr "" +msgstr "Промена боја у графику" #. (itstool) path: sect2/para #: C/index.docbook:387 msgid "To change the colors in a graph, perform the following steps:" -msgstr "" +msgstr "Да измените боје у графику, урадите следеће:" #. (itstool) path: listitem/para #: C/index.docbook:392 @@ -489,6 +554,8 @@ msgid "" "Right-click on the applet, then choose " "<guimenuitem>Preferences</guimenuitem>." msgstr "" +"Десни клик на програмче, затим изаберите " +"„<guimenuitem>Поставке</guimenuitem>“." #. (itstool) path: listitem/para #: C/index.docbook:397 @@ -496,12 +563,14 @@ msgid "" "Select the relevant tab in the <guilabel>Colors</guilabel> area of the " "<guilabel>System Monitor Preferences</guilabel> dialog." msgstr "" +"Изаберите одговарајући језичак у делу „<guilabel>Боје</guilabel>“ у " +"прозорчету „<guilabel>Поставке праћења система</guilabel>“." #. (itstool) path: listitem/para #: C/index.docbook:403 msgid "" "Click on the relevant color selector button in the selected tabbed section." -msgstr "" +msgstr "Кликните на одговарајуће дугме бирача боје у изабраном одељку." #. (itstool) path: listitem/para #: C/index.docbook:408 @@ -509,11 +578,13 @@ msgid "" "On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" " boxes to choose the line color for the selected parameter." msgstr "" +"У прозорчету „<guilabel>Изаберите боју</guilabel>“, користите точкић боје " +"или вртешке да изаберете боју линије за изабрани параметар." #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Кликните „<guibutton>У реду</guibutton>“." #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -521,19 +592,21 @@ msgid "" "The tabbed section for each resource provides color selection buttons that " "you can use to change the color of the parameters for each resource." msgstr "" +"Картични одељак за сваки ресурс обезбеђује дугмад бирања боје коју можете да" +" користите да измените боју параметара за сваки ресурс." #. (itstool) path: listitem/para #: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 #: C/index.docbook:568 C/index.docbook:604 C/index.docbook:640 msgid "" "Select this tab to display the color buttons for the following parameters:" -msgstr "" +msgstr "Изаберите ову картицу да прикажете дугмад боје за следеће параметре:" #. (itstool) path: entry/para #: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 #: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 msgid "Parameter" -msgstr "" +msgstr "Параметар" #. (itstool) path: entry/para #: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 @@ -544,222 +617,223 @@ msgstr "Опис" #. (itstool) path: entry/para #: C/index.docbook:446 C/index.docbook:492 msgid "<guilabel>User</guilabel>" -msgstr "" +msgstr "<guilabel>Корисник</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:447 msgid "Processor time used by non-kernel activities" -msgstr "" +msgstr "Време коришћења процесора активностима не-језгра" #. (itstool) path: entry/para #: C/index.docbook:450 msgid "<guilabel>System</guilabel>" -msgstr "" +msgstr "<guilabel>Систем</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 msgid "Processor time used by kernel activities" -msgstr "" +msgstr "Време коришћења процесора активностима језгра" #. (itstool) path: entry/para #: C/index.docbook:454 msgid "<guilabel>Nice</guilabel>" -msgstr "" +msgstr "<guilabel>Мање приоритетно</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:455 msgid "Processor time used by low-priority processes" -msgstr "" +msgstr "Време коришћења процесора процесима мање хитности" #. (itstool) path: entry/para #: C/index.docbook:458 msgid "<guilabel>IOWait</guilabel>" -msgstr "" +msgstr "<guilabel>УИ-чекање</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:460 msgid "Processor time used waiting for I/O" -msgstr "" +msgstr "Време коришћења процесора чекајући на У/И" #. (itstool) path: entry/para #: C/index.docbook:464 msgid "<guilabel>Idle</guilabel>" -msgstr "" +msgstr "<guilabel>Неупослен</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:465 msgid "Unused processor capacity" -msgstr "" +msgstr "Капацитет некоришћења процесора" #. (itstool) path: entry/para #: C/index.docbook:493 msgid "Memory used by non-kernel activities" -msgstr "" +msgstr "Коришћење меморије активностима не-језгра" #. (itstool) path: entry/para #: C/index.docbook:496 msgid "<guilabel>Shared</guilabel>" -msgstr "" +msgstr "<guilabel>Дељена</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:497 msgid "Memory used by more than one application" -msgstr "" +msgstr "Меморија коју користи више од једног програма" #. (itstool) path: entry/para #: C/index.docbook:500 msgid "<guilabel>Buffers</guilabel>" -msgstr "" +msgstr "<guilabel>Бафери</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:501 msgid "Memory used to temporarily store sent or received data" msgstr "" +"Меморија коришћена за привремно чување послатих или примљених података" #. (itstool) path: entry/para #: C/index.docbook:504 msgid "<guilabel>Cached</guilabel>" -msgstr "" +msgstr "<guilabel>Кеширана</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:505 msgid "Memory used to store data for fast access" -msgstr "" +msgstr "Меморија коришћена за чување података за брзи приступ" #. (itstool) path: entry/para #: C/index.docbook:508 C/index.docbook:591 msgid "<guilabel>Free</guilabel>" -msgstr "" +msgstr "<guilabel>Слободна</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:509 msgid "Memory not currently in use" -msgstr "" +msgstr "Меморија која није тренутно у употреби" #. (itstool) path: entry/para #: C/index.docbook:536 msgid "<guilabel>In</guilabel>" -msgstr "" +msgstr "<guilabel>Примљено</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:537 msgid "Incoming traffic" -msgstr "" +msgstr "Долазни саобраћај" #. (itstool) path: entry/para #: C/index.docbook:540 msgid "<guilabel>Out</guilabel>" -msgstr "" +msgstr "<guilabel>Послато</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:541 msgid "Outgoing traffic" -msgstr "" +msgstr "Одлазни саобраћај" #. (itstool) path: entry/para #: C/index.docbook:544 msgid "<guilabel>Local</guilabel>" -msgstr "" +msgstr "<guilabel>Локално</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:545 msgid "Traffic over loopback" -msgstr "" +msgstr "Саобраћај преко повратне петље" #. (itstool) path: entry/para #: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 msgid "<guilabel>Background</guilabel>" -msgstr "" +msgstr "<guilabel>Позадина</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:549 msgid "Graph background color" -msgstr "" +msgstr "Боја позадине графика" #. (itstool) path: entry/para #: C/index.docbook:552 msgid "<guilabel>Gridline</guilabel>" -msgstr "" +msgstr "<guilabel>Линија мреже</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:553 msgid "Color of horizontal gridline when scaling graph" -msgstr "" +msgstr "Боја водоравне линије мреже приликом сразмеравања графика" #. (itstool) path: entry/para #: C/index.docbook:556 msgid "<guilabel>Indicator</guilabel>" -msgstr "" +msgstr "<guilabel>Показатељ</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:557 msgid "Color of indicator showing which threshold was reached" -msgstr "" +msgstr "Боја показатеља који показује који је праг достигнут" #. (itstool) path: entry/para #: C/index.docbook:585 msgid "<guilabel>Used</guilabel>" -msgstr "" +msgstr "<guilabel>Искоришћено</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:587 msgid "Swap space being used by the system" -msgstr "" +msgstr "Простор разменске меморије коју користи систем" #. (itstool) path: entry/para #: C/index.docbook:593 msgid "Swap space that is free to be used" -msgstr "" +msgstr "Простор разменске меморије који је слободан за коришћење" #. (itstool) path: entry/para #: C/index.docbook:621 msgid "<guilabel>Average</guilabel>" -msgstr "" +msgstr "<guilabel>Просек</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:622 msgid "System Load" -msgstr "" +msgstr "Системско оптерећење" #. (itstool) path: entry/para #: C/index.docbook:626 msgid "that is, no load" -msgstr "" +msgstr "тако је, без оптерећења" #. (itstool) path: entry/para #: C/index.docbook:629 msgid "<guilabel>Grid line</guilabel>" -msgstr "" +msgstr "<guilabel>Линија мреже</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:630 msgid "Color of grid lines" -msgstr "" +msgstr "Боја линије мреже" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>Читање</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 msgid "Disk read rate" -msgstr "" +msgstr "Стопа читања са диска" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>Упис</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 msgid "Disk write rate" -msgstr "" +msgstr "Стопа писања на диск" #. (itstool) path: entry/para #: C/index.docbook:666 msgid "Idle disk time" -msgstr "" +msgstr "Време мировања диска" #. (itstool) path: sect2/title #: C/index.docbook:676 @@ -775,14 +849,22 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" +"Помераји заједно са указивачем омогућавају мрежном графику да промени " +"сразмеру и да боље представи стварно оптерећење. Ако је обједињени мрежни " +"саобраћај (улаз + излаз + петља) испод помераја1, не приказује се указивач, " +"y-оса на мрежном графику иде од 0 до помераја1. Када је саобраћај већи од " +"помераја1, биће приказан један указивач а y-оса сада иде од 0 до помераја2. " +"Када се достигне померај2, два указивача биће приказана а y-оса иде од 0 до " +"помераја3. Када се достигне померај3, три указивача се приказују а y-оса иде" +" од 0 до максимума на графику ма који био." #. (itstool) path: sect2/para #: C/index.docbook:685 msgid "Gridlines are hard to explain, just observe, and they are obvious." -msgstr "" +msgstr "Тешко је објаснити линије мреже, само посматрајте, и биће вам јасне." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -799,6 +881,12 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Дозвољено је умножавање, расподела, вршење измена овог документа под " +"условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било" +" које касније верзије без непромењивих одељака, текста на насловној и " +"последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак " +"ГЛСД можете пронаћи на овој <_:ulink-1/> или у датотеци „COPYING-DOCS“ која " +"је приложена уз ово упутство." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -808,6 +896,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"желите да расподељујете ово упутство одвојено од скупа, то можете урадити " +"додавањем примерка лиценце документу, како је описано у одељку 6 саме " +"лиценце." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -818,6 +910,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Многи називи које компаније користе у циљу препознатљивости својих производа" +" и услуга представљају робне марке. Када (уколико) се такви називи " +"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +"документационог пројекта имају сазнања о томе, тада су називи исписани " +"великим словима или са великим почетним словима." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -834,6 +931,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ " +"ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ " +"ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА " +"ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ " +"ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ " +"ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ " +"ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ" +" АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ " +"ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ " +"ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА " +"ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА" +" ЈАМСТВА." #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -849,6 +958,15 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА," +" ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ " +"ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ" +" ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА " +"ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ " +"ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ " +"ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ" +" ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И" +" АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -857,3 +975,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " +"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" diff --git a/multiload/docs/sr@latin/[email protected] b/multiload/docs/sr@latin/[email protected] index 2b2c2879..5d9df4f6 100644 --- a/multiload/docs/sr@latin/[email protected] +++ b/multiload/docs/sr@latin/[email protected] @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Ivan Pejić <[email protected]>, 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -772,7 +772,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/sv/sv.po b/multiload/docs/sv/sv.po index 5e353b0f..c1da0ecf 100644 --- a/multiload/docs/sv/sv.po +++ b/multiload/docs/sv/sv.po @@ -1,22 +1,22 @@ # # Translators: -# Kristoffer Grundström <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 -# Wolfgang Ulbrich <[email protected]>, 2018 # Daniel Gullbransen, 2018 # Tobias Lekare <[email protected]>, 2018 # Philip Andersen <[email protected]>, 2018 # crash <[email protected]>, 2019 # eckeman <[email protected]>, 2020 -# Luna Jernberg <[email protected]>, 2020 +# Wolfgang Ulbrich <[email protected]>, 2020 +# Luna Jernberg <[email protected]>, 2021 +# Kristoffer Grundström <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Luna Jernberg <[email protected]>, 2020\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"Last-Translator: Kristoffer Grundström <[email protected]>, 2021\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -58,7 +58,7 @@ msgstr "<year>2004</year><holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:39 msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -141,7 +141,9 @@ msgstr "Angela Boyle" msgid "" "<revnumber>Version 2.8</revnumber> <date>August 2004</date> " "<_:revdescription-1/>" -msgstr "<revnumber>Version 2.8 <date>Augusti 2004</date><_:revdescription-1/>" +msgstr "" +"<revnumber>Version 2.8</revnumber> <date>Augusti " +"2004</date><_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:143 @@ -216,6 +218,8 @@ msgid "" "external ref='figures/system-monitor-applet_window.png' " "md5='a43dcac840e66164cf7e0e649b61b5da'" msgstr "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:188 @@ -279,12 +283,12 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:244 msgid "Right-click on the panel." -msgstr "" +msgstr "Högerklicka på panelen." #. (itstool) path: listitem/para #: C/index.docbook:249 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Välj <guimenuitem>Lägg till i panelen</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -296,7 +300,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:260 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klicka på <guibutton>Lägg till</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -367,7 +371,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:316 C/index.docbook:601 msgid "<guilabel>Load</guilabel>" -msgstr "" +msgstr "<guilabel>Last</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:319 @@ -440,6 +444,8 @@ msgid "" "external ref='figures/multiload-preferences.png' " "md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" msgstr "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:364 @@ -517,7 +523,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:415 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Klicka på <guibutton>Ok</guibutton>" #. (itstool) path: sect2/para #: C/index.docbook:420 @@ -558,7 +564,7 @@ msgstr "" #. (itstool) path: entry/para #: C/index.docbook:450 msgid "<guilabel>System</guilabel>" -msgstr "" +msgstr "<guilabel>System</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:451 @@ -743,7 +749,7 @@ msgstr "" #. (itstool) path: entry/para #: C/index.docbook:657 msgid "<guilabel>Read</guilabel>" -msgstr "" +msgstr "<guilabel>Läs</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:658 @@ -753,7 +759,7 @@ msgstr "" #. (itstool) path: entry/para #: C/index.docbook:661 msgid "<guilabel>Write</guilabel>" -msgstr "" +msgstr "<guilabel>Skriv</guilabel>" #. (itstool) path: entry/para #: C/index.docbook:662 @@ -779,7 +785,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ta/ta.po b/multiload/docs/ta/ta.po index b17708db..fb578aff 100644 --- a/multiload/docs/ta/ta.po +++ b/multiload/docs/ta/ta.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/te/te.po b/multiload/docs/te/te.po index 599a2ab7..6e25de90 100644 --- a/multiload/docs/te/te.po +++ b/multiload/docs/te/te.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/th/th.po b/multiload/docs/th/th.po index 61319c86..49c6aaee 100644 --- a/multiload/docs/th/th.po +++ b/multiload/docs/th/th.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Akom <[email protected]>, 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/tr/tr.po b/multiload/docs/tr/tr.po index 166fd7a9..226fe8a0 100644 --- a/multiload/docs/tr/tr.po +++ b/multiload/docs/tr/tr.po @@ -1,17 +1,19 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 +# Butterfly <[email protected]>, 2018 # mauron, 2018 # 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 -# Butterfly <[email protected]>, 2020 +# hilalis <[email protected]>, 2021 +# Gurbuzguven <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Butterfly <[email protected]>, 2020\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"Last-Translator: Gurbuzguven <[email protected]>, 2021\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,8 +49,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE tBelgelendirme Projesi</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year><holder>MATE Belgelendirme Projesi</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -354,7 +356,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:292 C/index.docbook:472 msgid "<guilabel>Memory</guilabel>" -msgstr "" +msgstr "<guilabel>Bellek</guilabel>" #. (itstool) path: listitem/para #: C/index.docbook:295 @@ -796,7 +798,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ug/ug.po b/multiload/docs/ug/ug.po index 6f22b5d7..3dbaf4f2 100644 --- a/multiload/docs/ug/ug.po +++ b/multiload/docs/ug/ug.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -777,7 +777,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/uk/uk.po b/multiload/docs/uk/uk.po index 931b2011..5ac0b306 100644 --- a/multiload/docs/uk/uk.po +++ b/multiload/docs/uk/uk.po @@ -3,14 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Микола Ткач <[email protected]>, 2018 +# Sergiy <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: Микола Ткач <[email protected]>, 2018\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"Last-Translator: Sergiy <[email protected]>, 2022\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,8 +40,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документування MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -798,7 +799,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/ur/ur.po b/multiload/docs/ur/ur.po index e49584d6..d481f67f 100644 --- a/multiload/docs/ur/ur.po +++ b/multiload/docs/ur/ur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -774,7 +774,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/uz/uz.po b/multiload/docs/uz/uz.po index 56a7c4ea..9f8cc557 100644 --- a/multiload/docs/uz/uz.po +++ b/multiload/docs/uz/uz.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# muzaffar habibullayev <[email protected]>, 2018 +# Muzaffar Habibullayev <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: muzaffar habibullayev <[email protected]>, 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"Last-Translator: Muzaffar Habibullayev <[email protected]>, 2018\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/vi/vi.po b/multiload/docs/vi/vi.po index 21f76781..5fb7682a 100644 --- a/multiload/docs/vi/vi.po +++ b/multiload/docs/vi/vi.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Duy Truong Nguyen <[email protected]>, 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -769,7 +769,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/wa/wa.po b/multiload/docs/wa/wa.po index 68bc0fa1..36936c16 100644 --- a/multiload/docs/wa/wa.po +++ b/multiload/docs/wa/wa.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/xh/xh.po b/multiload/docs/xh/xh.po index 9cdff912..d432360f 100644 --- a/multiload/docs/xh/xh.po +++ b/multiload/docs/xh/xh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/yo/yo.po b/multiload/docs/yo/yo.po index f95e7791..3ebba6e6 100644 --- a/multiload/docs/yo/yo.po +++ b/multiload/docs/yo/yo.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -768,7 +768,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/zh-Hans/zh-Hans.po b/multiload/docs/zh-Hans/zh-Hans.po new file mode 100644 index 00000000..fb60dfb6 --- /dev/null +++ b/multiload/docs/zh-Hans/zh-Hans.po @@ -0,0 +1,853 @@ +# +# Translators: +# Xiaoyuan Chen <[email protected]>, 2018 +# 敏超 马 <[email protected]>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:23+0000\n" +"Last-Translator: 敏超 马 <[email protected]>, 2021\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh-Hans\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "翻译人员-致谢" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:22 +msgid "System Monitor Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:24 +msgid "" +"System Monitor displays system load information in graphical format in a " +"panel." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:27 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "<year>2005</year> <holder>Davyd Madeley</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "<year>2003</year> <year>2004</year> <holder>Chee Bin HOH</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:53 C/index.docbook:118 +msgid "MATE Documentation Project" +msgstr "MATE 文档项目" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:56 C/index.docbook:135 C/index.docbook:144 +#: C/index.docbook:155 +msgid "GNOME Documentation Project" +msgstr "GNOME 文档项目" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:63 +msgid "" +"<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:71 +msgid "" +"<firstname>Angela</firstname> <surname>Boyle</surname> " +"<affiliation><address> <email>[email protected]</email> " +"</address></affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:79 +msgid "" +"<firstname>Chee Bin</firstname> <surname>HOH</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:88 +msgid "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:117 +msgid "MATE Documentation Team" +msgstr "MATE 文档团队" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:113 +msgid "" +"<revnumber>System Monitor V2.12</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:126 +msgid "Davyd Madeley" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:122 +msgid "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:134 +msgid "Angela Boyle" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:130 +msgid "" +"<revnumber>Version 2.8</revnumber> <date>August 2004</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:143 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:139 +msgid "" +"<revnumber>System Monitor Applet Manual V2.1</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:152 +msgid "Chee Bin HOH <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:148 +msgid "" +"<revnumber>System Monitor Applet Manual V2.0</revnumber> <date>July " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:161 +msgid "This manual describes version 1.10.2 of System Monitor." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:164 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:165 +msgid "" +"To report a bug or make a suggestion regarding the System Monitor applet or " +"this manual, follow the directions in the <ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">MATE Feedback Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:172 +msgid "<primary>System Monitor Applet</primary>" +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:175 +msgid "<primary>System Monitor</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:182 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:186 +msgid "System Monitor" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:190 +msgctxt "_" +msgid "" +"external ref='figures/system-monitor-applet_window.png' " +"md5='a43dcac840e66164cf7e0e649b61b5da'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:188 +msgid "" +"<imageobject><imagedata fileref=\"figures/system-monitor-applet_window.png\"" +" format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows System Monitor. " +"Displays a graph for system CPU load. </phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:201 +msgid "" +"The <application>System Monitor</application> displays system load " +"information in graphical format in a panel. You can configure " +"<application>System Monitor</application> to display the following " +"information for your system:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:209 +msgid "Usage of CPU (central processing unit) time" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:214 +msgid "Memory usage" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:219 +msgid "Network traffic" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:224 +msgid "Usage of swap space" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:229 +msgid "Average system load" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:233 +msgid "Disk load" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:237 +msgid "To Add System Monitor to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:238 +msgid "" +"To add <application>System Monitor</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:244 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:249 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:254 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>System Monitor</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:260 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:265 +msgid "" +"The layout of the <application>System Monitor</application> varies depending" +" on the size and type of panel in which the applet resides." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:277 +msgid "Viewing Graphs" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:280 +msgid "Displaying Additional Graphs" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:281 +msgid "" +"To configure the <application>System Monitor</application> applet, right-" +"click on the applet, then choose <guimenuitem>Preferences</guimenuitem>. " +"Under <guilabel>Monitored Resources</guilabel> you can choose which graphics" +" you want to display:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:284 C/index.docbook:426 +msgid "<guilabel>Processor</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:287 +msgid "Select this option to display the graph for CPU usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:292 C/index.docbook:472 +msgid "<guilabel>Memory</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:295 +msgid "Select this option to display the graph for memory usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:300 C/index.docbook:516 +msgid "<guilabel>Network</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:303 +msgid "Select this option to display the graph for network traffic." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:308 C/index.docbook:565 +msgid "<guilabel>Swap Space</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:311 +msgid "Select this option to display the graph for swap-space usage." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:316 C/index.docbook:601 +msgid "<guilabel>Load</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:319 +msgid "Select this option to display the graph for average system load." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:324 C/index.docbook:637 +msgid "<guilabel>Harddisk</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:325 +msgid "Select this option to display the graph for disk usage." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:333 +msgid "To Display the Current Usage of a System Resource" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:334 +msgid "" +"To display the current usage of a system resource, position the mouse " +"pointer over the corresponding graph in the applet. A tooltip displays the " +"current usage as a percentage." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:342 +msgid "To Display Additional System Monitor Information" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:343 +msgid "" +"To display additional system monitor information, right-click on the applet," +" then choose <guimenuitem>Open System Monitor</guimenuitem> to start the " +"<application>System Monitor</application> application." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:348 +msgid "" +"The <application>System Monitor</application> application enables you to " +"monitor system processes and usage of system resources. You can use the " +"<application>System Monitor</application> application to modify the behavior" +" of your system." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:360 +msgid "Customizing Appearance" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:362 +msgid "Preferences Dialog" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:366 +msgctxt "_" +msgid "" +"external ref='figures/multiload-preferences.png' " +"md5='4bfa5bdee407b7b439ec8a63e5c8e2b7'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:364 +msgid "" +"<imageobject><imagedata fileref=\"figures/multiload-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Preferences Dialog " +"</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:376 +msgid "To Change the Width" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:377 +msgid "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor " +"width</guilabel> spin box to specify the width of each <application>System " +"Monitor</application> graph in pixels." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:380 +msgid "To Update at Regular Intervals" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:381 +msgid "" +"In the right-click menu, go to <guimenuitem>Preferences</guimenuitem>. Under" +" <guilabel>Options</guilabel>, use the <guilabel>System monitor update " +"interval</guilabel> spin box to specify the interval at which you want to " +"update the graphs in milliseconds." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:386 +msgid "Changing the Colors in a Graph" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:387 +msgid "To change the colors in a graph, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:392 +msgid "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:397 +msgid "" +"Select the relevant tab in the <guilabel>Colors</guilabel> area of the " +"<guilabel>System Monitor Preferences</guilabel> dialog." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:403 +msgid "" +"Click on the relevant color selector button in the selected tabbed section." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:408 +msgid "" +"On the <guilabel>Pick a Color</guilabel> dialog, use the color wheel or spin" +" boxes to choose the line color for the selected parameter." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:415 +msgid "Click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:420 +msgid "" +"The tabbed section for each resource provides color selection buttons that " +"you can use to change the color of the parameters for each resource." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:429 C/index.docbook:475 C/index.docbook:519 +#: C/index.docbook:568 C/index.docbook:604 C/index.docbook:640 +msgid "" +"Select this tab to display the color buttons for the following parameters:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:439 C/index.docbook:485 C/index.docbook:529 +#: C/index.docbook:578 C/index.docbook:614 C/index.docbook:650 +msgid "Parameter" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:441 C/index.docbook:487 C/index.docbook:531 +#: C/index.docbook:580 C/index.docbook:616 C/index.docbook:652 +msgid "Description" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:446 C/index.docbook:492 +msgid "<guilabel>User</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:447 +msgid "Processor time used by non-kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:450 +msgid "<guilabel>System</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:451 +msgid "Processor time used by kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:454 +msgid "<guilabel>Nice</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:455 +msgid "Processor time used by low-priority processes" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:458 +msgid "<guilabel>IOWait</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:460 +msgid "Processor time used waiting for I/O" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:464 +msgid "<guilabel>Idle</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:465 +msgid "Unused processor capacity" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:493 +msgid "Memory used by non-kernel activities" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:496 +msgid "<guilabel>Shared</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:497 +msgid "Memory used by more than one application" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:500 +msgid "<guilabel>Buffers</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:501 +msgid "Memory used to temporarily store sent or received data" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:504 +msgid "<guilabel>Cached</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:505 +msgid "Memory used to store data for fast access" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:508 C/index.docbook:591 +msgid "<guilabel>Free</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:509 +msgid "Memory not currently in use" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:536 +msgid "<guilabel>In</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:537 +msgid "Incoming traffic" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:540 +msgid "<guilabel>Out</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:541 +msgid "Outgoing traffic" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:544 +msgid "<guilabel>Local</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:545 +msgid "Traffic over loopback" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:548 C/index.docbook:625 C/index.docbook:665 +msgid "<guilabel>Background</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:549 +msgid "Graph background color" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:552 +msgid "<guilabel>Gridline</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:553 +msgid "Color of horizontal gridline when scaling graph" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:556 +msgid "<guilabel>Indicator</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:557 +msgid "Color of indicator showing which threshold was reached" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:585 +msgid "<guilabel>Used</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:587 +msgid "Swap space being used by the system" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:593 +msgid "Swap space that is free to be used" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:621 +msgid "<guilabel>Average</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:622 +msgid "System Load" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:626 +msgid "that is, no load" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:629 +msgid "<guilabel>Grid line</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:630 +msgid "Color of grid lines" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:657 +msgid "<guilabel>Read</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:658 +msgid "Disk read rate" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:661 +msgid "<guilabel>Write</guilabel>" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:662 +msgid "Disk write rate" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:666 +msgid "Idle disk time" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:676 +msgid "Network speed thresholds" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:677 +msgid "" +"Thresholds together with indicator allow network graph to scale and better " +"represent actual workload. If combined network traffic (in + out + loopback)" +" is below threshold1, no indicator is shown, y-axis on network graph go from" +" 0 to threshold1. When traffic is more than threshold1, one indicator will " +"be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," +" two indicators will be shown and y-axis go from 0 to threshold3. When " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " +"whatever is current maximum in graph." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:685 +msgid "Gridlines are hard to explain, just observe, and they are obvious." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/multiload/docs/zh_CN/zh_CN.po b/multiload/docs/zh_CN/zh_CN.po index be8ed595..a58ee612 100644 --- a/multiload/docs/zh_CN/zh_CN.po +++ b/multiload/docs/zh_CN/zh_CN.po @@ -2,22 +2,22 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Mingcong Bai <[email protected]>, 2018 -# liushuyu011 <[email protected]>, 2018 +# shuyu liu <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # zhangxianwei8 <[email protected]>, 2018 # biqiu-ssw <[email protected]>, 2018 # CNAmira <[email protected]>, 2018 # zhineng404 <[email protected]>, 2019 -# liulitchi <[email protected]>, 2019 -# 邢家朋 <[email protected]>, 2020 +# liu lizhi <[email protected]>, 2019 +# OkayPJ <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" -"Last-Translator: 邢家朋 <[email protected]>, 2020\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Last-Translator: OkayPJ <[email protected]>, 2021\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -54,8 +54,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE 文档项目</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 文档团队</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 @@ -793,7 +793,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/zh_HK/zh_HK.po b/multiload/docs/zh_HK/zh_HK.po index 509a2198..34d9b832 100644 --- a/multiload/docs/zh_HK/zh_HK.po +++ b/multiload/docs/zh_HK/zh_HK.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -771,7 +771,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/zh_TW/zh_TW.po b/multiload/docs/zh_TW/zh_TW.po index cda5a420..98872e08 100644 --- a/multiload/docs/zh_TW/zh_TW.po +++ b/multiload/docs/zh_TW/zh_TW.po @@ -4,16 +4,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # 趙惟倫 <[email protected]>, 2018 # lin feather <[email protected]>, 2018 -# byStarTW (pan93412) <[email protected]>, 2018 +# pan93412 <[email protected]>, 2018 # 黃柏諺 <[email protected]>, 2019 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: 黃柏諺 <[email protected]>, 2019\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +45,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -779,7 +779,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/docs/zu/zu.po b/multiload/docs/zu/zu.po index 5d317bba..c500ed5c 100644 --- a/multiload/docs/zu/zu.po +++ b/multiload/docs/zu/zu.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:23+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -770,7 +770,7 @@ msgid "" " 0 to threshold1. When traffic is more than threshold1, one indicator will " "be shown and y-axis now go from 0 to threshold2. When threshold2 is reached," " two indicators will be shown and y-axis go from 0 to threshold3. When " -"threshold3 is reached, three indicators are shown and y-axis go form 0 to " +"threshold3 is reached, three indicators are shown and y-axis go from 0 to " "whatever is current maximum in graph." msgstr "" diff --git a/multiload/linux-proc.h b/multiload/linux-proc.h deleted file mode 100644 index 0aba1a0e..00000000 --- a/multiload/linux-proc.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef LINUX_PROC_H__ -#define LINUX_PROC_H__ - -#include <load-graph.h> - -G_GNUC_INTERNAL void GetLoad (int Maximum, int data [cpuload_n], LoadGraph *g); -G_GNUC_INTERNAL void GetDiskLoad (int Maximum, int data [diskload_n], LoadGraph *g); -G_GNUC_INTERNAL void GetMemory (int Maximum, int data [memload_n], LoadGraph *g); -G_GNUC_INTERNAL void GetSwap (int Maximum, int data [swapload_n], LoadGraph *g); -G_GNUC_INTERNAL void GetLoadAvg (int Maximum, int data [2], LoadGraph *g); -G_GNUC_INTERNAL void GetNet (int Maximum, int data [4], LoadGraph *g); - -#endif diff --git a/multiload/properties.c b/multiload/properties.c deleted file mode 100644 index c1ee09b6..00000000 --- a/multiload/properties.c +++ /dev/null @@ -1,868 +0,0 @@ -/* MATE cpuload/memload panel applet - * (C) 2002 The Free Software Foundation - * - * Authors: - * Todd Kulesza - * - * - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <string.h> - -#include <gtk/gtk.h> - -#include <gio/gio.h> -#include <mate-panel-applet.h> -#include <mate-panel-applet-gsettings.h> - -#include "global.h" - -#define PROP_CPU 0 -#define PROP_MEM 1 -#define PROP_NET 2 -#define PROP_SWAP 3 -#define PROP_AVG 4 -#define PROP_DISK 5 - -#define PROP_SPEED 6 -#define PROP_SIZE 7 -#define PROP_NET_THRESHOLD1 8 -#define PROP_NET_THRESHOLD2 9 -#define PROP_NET_THRESHOLD3 10 -#define HIG_IDENTATION " " -#define NEVER_SENSITIVE "never_sensitive" - -/* set sensitive and setup NEVER_SENSITIVE appropriately */ -static void -hard_set_sensitive (GtkWidget *w, gboolean sensitivity) -{ - gtk_widget_set_sensitive (w, sensitivity); - g_object_set_data (G_OBJECT (w), NEVER_SENSITIVE, - GINT_TO_POINTER ( ! sensitivity)); -} - - -/* set sensitive, but always insensitive if NEVER_SENSITIVE is set */ -static void -soft_set_sensitive (GtkWidget *w, gboolean sensitivity) -{ - if (g_object_get_data (G_OBJECT (w), NEVER_SENSITIVE)) - gtk_widget_set_sensitive (w, FALSE); - else - gtk_widget_set_sensitive (w, sensitivity); -} - -static void -properties_set_insensitive(MultiloadApplet *ma) -{ - gint i, total_graphs, last_graph; - - total_graphs = 0; - last_graph = 0; - - for (i = 0; i < graph_n; i++) - if (ma->graphs[i]->visible) - { - last_graph = i; - total_graphs++; - } - - if (total_graphs < 2) - soft_set_sensitive(ma->check_boxes[last_graph], FALSE); - - return; -} - -static void -properties_close_cb (GtkWidget *widget, gint arg, MultiloadApplet *ma) -{ - GError *error = NULL; - - switch (arg) - { - case GTK_RESPONSE_HELP: - - gtk_show_uri_on_window (NULL, - "help:mate-multiload/multiload-prefs", - gtk_get_current_event_time (), - &error); - - if (error) { /* FIXME: the user needs to see this */ - g_warning ("help error: %s\n", error->message); - g_error_free (error); - error = NULL; - } - break; - - case GTK_RESPONSE_CLOSE: - default: - gtk_widget_destroy (widget); - ma->prop_dialog = NULL; - } -} - -static void -property_toggled_cb(GtkWidget *widget, gpointer name) -{ - MultiloadApplet *ma; - gint prop_type, i; - gboolean active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); - - ma = g_object_get_data(G_OBJECT(widget), "MultiloadApplet"); - prop_type = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "prop_type")); - - /* FIXME: the first toggle button to be checked/dechecked does not work, but after that everything is cool. what gives? */ - /* FIXME: check if this is still valid for gsettings */ - g_settings_set_boolean (ma->settings, (gchar *)name, active); - g_settings_set_boolean (ma->settings, (gchar *)name, active); - - if (active) - { - for (i = 0; i < graph_n; i++) - soft_set_sensitive(ma->check_boxes[i], TRUE); - gtk_widget_show_all (ma->graphs[prop_type]->main_widget); - ma->graphs[prop_type]->visible = TRUE; - load_graph_start(ma->graphs[prop_type]); - } - else - { - load_graph_stop(ma->graphs[prop_type]); - gtk_widget_hide (ma->graphs[prop_type]->main_widget); - ma->graphs[prop_type]->visible = FALSE; - properties_set_insensitive(ma); - } - - return; -} - -static void -spin_button_changed_cb(GtkWidget *widget, gpointer name) -{ - MultiloadApplet *ma; - gint value; - gint prop_type, i; - - ma = g_object_get_data(G_OBJECT(widget), "MultiloadApplet"); - prop_type = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "prop_type")); - value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget)); - - switch(prop_type) - { - case PROP_SPEED: - g_settings_set_int (ma->settings, (gchar *)name, value); - for (i = 0; i < graph_n; i++) - { - load_graph_stop(ma->graphs[i]); - ma->graphs[i]->speed = value; - if (ma->graphs[i]->visible) - load_graph_start(ma->graphs[i]); - } - - break; - - case PROP_SIZE: - for (i = 0; i < graph_n; i++) - { - g_settings_set_int (ma->settings, (gchar *)name, value); - ma->graphs[i]->size = value ; - - if (ma->graphs[i]->orient) - gtk_widget_set_size_request ( - ma->graphs[i]->main_widget, - ma->graphs[i]->pixel_size, - ma->graphs[i]->size); - else - gtk_widget_set_size_request ( - ma->graphs[i]->main_widget, - ma->graphs[i]->size, - ma->graphs[i]->pixel_size); - } - break; - - case PROP_NET_THRESHOLD1: - g_settings_set_uint (ma->settings, (gchar *)name, value); - if (value >= ma->net_threshold2) - { - gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), - (gdouble)g_settings_get_uint (ma->settings, - "netthreshold2") - 1); - ma->net_threshold1 = g_settings_get_uint (ma->settings, - "netthreshold2") - 1; - } - else - ma->net_threshold1 = value; - break; - - case PROP_NET_THRESHOLD2: - g_settings_set_uint (ma->settings, (gchar *)name, value); - if (value >= ma->net_threshold3) - { - gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), - (gdouble)g_settings_get_uint (ma->settings, - "netthreshold3") - 1); - ma->net_threshold2 = g_settings_get_uint (ma->settings, - "netthreshold3") - 1; - } - else if (value <= ma->net_threshold1) - { - gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), - (gdouble)g_settings_get_uint (ma->settings, - "netthreshold1") + 1); - ma->net_threshold2 = g_settings_get_uint (ma->settings, - "netthreshold1") + 1; - } - else - ma->net_threshold2 = value; - break; - - case PROP_NET_THRESHOLD3: - g_settings_set_uint (ma->settings, (gchar *)name, value); - if (value <= ma->net_threshold2) - { - gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), - (gdouble)g_settings_get_uint (ma->settings, - "netthreshold2") + 1); - ma->net_threshold3 = g_settings_get_uint (ma->settings, - "netthreshold2") + 1; - } - else - ma->net_threshold3 = value; - break; - default: - g_assert_not_reached(); - } - - return; -} - -/* create a new page in the notebook widget, add it, and return a pointer to it */ -static GtkWidget * -add_page(GtkWidget *notebook, gchar *label) -{ - GtkWidget *page; - GtkWidget *page_label; - - page = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_set_homogeneous (GTK_BOX (page), TRUE); - page_label = gtk_label_new(label); - gtk_container_set_border_width(GTK_CONTAINER(page), 6); - - gtk_notebook_append_page(GTK_NOTEBOOK(notebook), page, page_label); - - return page; -} - -/* save the selected color to gsettings and apply it on the applet */ -static void -color_picker_set_cb(GtkColorChooser *color_picker, gchar *key) -{ - gchar *color_string; - guint8 prop_type; - GdkRGBA color; - MultiloadApplet *ma; - - ma = g_object_get_data (G_OBJECT (color_picker), "MultiloadApplet"); - - if (strstr(key, "cpuload")) - prop_type = PROP_CPU; - else if (strstr(key, "memload")) - prop_type = PROP_MEM; - else if (strstr(key, "netload2")) - prop_type = PROP_NET; - else if (strstr(key, "swapload")) - prop_type = PROP_SWAP; - else if (strstr(key, "loadavg")) - prop_type = PROP_AVG; - else if (strstr(key, "diskload")) - prop_type = PROP_DISK; - else - g_assert_not_reached(); - - gtk_color_chooser_get_rgba(color_picker, &color); - - color_string = gdk_rgba_to_string (&color); - g_settings_set_string(ma->settings, key, color_string); - - gdk_rgba_parse(&(ma->graphs[prop_type]->colors[g_ascii_digit_value(key[strlen(key) - 1]) ]), - color_string); - - return; -} - -/* create a color selector */ -static void -add_color_selector(GtkWidget *page, gchar *name, gchar *key, MultiloadApplet *ma) -{ - GtkWidget *vbox; - GtkWidget *label; - GtkWidget *color_picker; - GdkRGBA color; - gchar *color_string; - - color_string = g_settings_get_string (ma->settings, key); - if (!color_string) - color_string = g_strdup ("#000000"); - gdk_rgba_parse (&color, color_string); - g_free (color_string); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - label = gtk_label_new_with_mnemonic(name); - color_picker = gtk_color_button_new(); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), color_picker); - - gtk_box_pack_start(GTK_BOX(vbox), color_picker, FALSE, FALSE, 0); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); - - gtk_box_pack_start(GTK_BOX(page), vbox, FALSE, FALSE, 0); - - g_object_set_data (G_OBJECT (color_picker), "MultiloadApplet", ma); - - gtk_color_chooser_set_rgba(GTK_COLOR_CHOOSER(color_picker), &color); - - g_signal_connect(G_OBJECT(color_picker), "color_set", G_CALLBACK(color_picker_set_cb), key); - - if ( ! g_settings_is_writable (ma->settings, key)) - hard_set_sensitive (vbox, FALSE); - - return; -} - -/* save the checkbox option to gsettings and apply it on the applet */ -static void -nvme_checkbox_toggled_cb (GtkCheckButton *checkbox, - MultiloadApplet *ma) -{ - gboolean option; - - option = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox)); - ma->nvme_diskstats = option; - g_settings_set_boolean (ma->settings, "diskload-nvme-diskstats", option); - - return; -} - -/* creates the properties dialog using up-to-the-minute info from gsettings */ -static void -fill_properties(GtkWidget *dialog, MultiloadApplet *ma) -{ - GtkWidget *page; - GtkWidget *hbox, *vbox; - GtkWidget *categories_vbox; - GtkWidget *category_vbox; - GtkWidget *control_vbox; - GtkWidget *control_hbox; - GtkWidget *check_box; - GtkWidget *indent; - GtkWidget *spin_button; - GtkWidget *label; - MatePanelAppletOrient orient; - GtkSizeGroup *label_size; - GtkSizeGroup *spin_size; - gchar *label_text; - gchar *title; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); - gtk_container_set_border_width (GTK_CONTAINER (vbox), 5); - gtk_widget_show (vbox); - - gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), - vbox, TRUE, TRUE, 0); - - categories_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 18); - gtk_box_pack_start (GTK_BOX (vbox), categories_vbox, TRUE, TRUE, 0); - gtk_widget_show (categories_vbox); - - category_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (categories_vbox), category_vbox, TRUE, TRUE, 0); - gtk_widget_show (category_vbox); - - title = g_strconcat ("<span weight=\"bold\">", _("Monitored Resources"), "</span>", NULL); - label = gtk_label_new_with_mnemonic (_(title)); - gtk_label_set_use_markup (GTK_LABEL (label), TRUE); - gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); - gtk_label_set_xalign (GTK_LABEL (label), 0.0); - gtk_box_pack_start (GTK_BOX (category_vbox), label, FALSE, FALSE, 0); - g_free (title); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_pack_start (GTK_BOX (category_vbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - indent = gtk_label_new (HIG_IDENTATION); - gtk_label_set_justify (GTK_LABEL (indent), GTK_JUSTIFY_LEFT); - gtk_box_pack_start (GTK_BOX (hbox), indent, FALSE, FALSE, 0); - gtk_widget_show (indent); - - control_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (hbox), control_vbox, TRUE, TRUE, 0); - gtk_widget_show (control_vbox); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - check_box = gtk_check_button_new_with_mnemonic(_("_Processor")); - ma->check_boxes[0] = check_box; - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_box), - g_settings_get_boolean (ma->settings, - VIEW_CPULOAD_KEY)); - g_object_set_data(G_OBJECT(check_box), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(check_box), "prop_type", GINT_TO_POINTER(PROP_CPU)); - g_signal_connect(G_OBJECT(check_box), "toggled", - G_CALLBACK(property_toggled_cb), VIEW_CPULOAD_KEY); - gtk_box_pack_start (GTK_BOX (control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_CPULOAD_KEY)) - hard_set_sensitive (check_box, FALSE); - - check_box = gtk_check_button_new_with_mnemonic(_("_Memory")); - ma->check_boxes[1] = check_box; - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_box), - g_settings_get_boolean (ma->settings, VIEW_MEMLOAD_KEY)); - g_object_set_data(G_OBJECT(check_box), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(check_box), "prop_type", GINT_TO_POINTER(PROP_MEM)); - g_signal_connect(G_OBJECT(check_box), "toggled", - G_CALLBACK(property_toggled_cb), VIEW_MEMLOAD_KEY); - gtk_box_pack_start (GTK_BOX (control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_MEMLOAD_KEY)) - hard_set_sensitive (check_box, FALSE); - - check_box = gtk_check_button_new_with_mnemonic(_("_Network")); - ma->check_boxes[2] = check_box; - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_box), - g_settings_get_boolean (ma->settings, VIEW_NETLOAD_KEY)); - g_object_set_data(G_OBJECT(check_box), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(check_box), "prop_type", GINT_TO_POINTER(PROP_NET)); - g_signal_connect(G_OBJECT(check_box), "toggled", - G_CALLBACK(property_toggled_cb), VIEW_NETLOAD_KEY); - gtk_box_pack_start (GTK_BOX (control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_NETLOAD_KEY)) - hard_set_sensitive (check_box, FALSE); - - check_box = gtk_check_button_new_with_mnemonic (_("S_wap Space")); - ma->check_boxes[3] = check_box; - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_box), - g_settings_get_boolean (ma->settings, VIEW_SWAPLOAD_KEY)); - g_object_set_data(G_OBJECT(check_box), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(check_box), "prop_type", GINT_TO_POINTER(PROP_SWAP)); - g_signal_connect(G_OBJECT(check_box), "toggled", - G_CALLBACK(property_toggled_cb), VIEW_SWAPLOAD_KEY); - gtk_box_pack_start (GTK_BOX (control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_SWAPLOAD_KEY)) - hard_set_sensitive (check_box, FALSE); - - check_box = gtk_check_button_new_with_mnemonic(_("_Load")); - ma->check_boxes[4] = check_box; - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_box), - g_settings_get_boolean (ma->settings, VIEW_LOADAVG_KEY)); - g_object_set_data(G_OBJECT(check_box), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(check_box), "prop_type", GINT_TO_POINTER(PROP_AVG)); - g_signal_connect(G_OBJECT(check_box), "toggled", - G_CALLBACK(property_toggled_cb), VIEW_LOADAVG_KEY); - gtk_box_pack_start(GTK_BOX(control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_LOADAVG_KEY)) - hard_set_sensitive (check_box, FALSE); - - check_box = gtk_check_button_new_with_mnemonic(_("_Harddisk")); - ma->check_boxes[5] = check_box; - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_box), - g_settings_get_boolean (ma->settings, VIEW_DISKLOAD_KEY)); - g_object_set_data (G_OBJECT (check_box), "MultiloadApplet", ma); - g_object_set_data (G_OBJECT (check_box), "prop_type", - GINT_TO_POINTER (PROP_DISK)); - g_signal_connect (G_OBJECT (check_box), "toggled", - G_CALLBACK (property_toggled_cb), VIEW_DISKLOAD_KEY); - gtk_box_pack_start (GTK_BOX (control_hbox), check_box, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, VIEW_DISKLOAD_KEY)) - hard_set_sensitive (check_box, FALSE); - - category_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (categories_vbox), category_vbox, TRUE, TRUE, 0); - gtk_widget_show (category_vbox); - - title = g_strconcat ("<span weight=\"bold\">", _("Options"), "</span>", NULL); - label = gtk_label_new (title); - gtk_label_set_use_markup (GTK_LABEL (label), TRUE); - gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); - gtk_label_set_xalign (GTK_LABEL (label), 0.0); - gtk_box_pack_start (GTK_BOX (category_vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - g_free (title); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_pack_start (GTK_BOX (category_vbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - indent = gtk_label_new (HIG_IDENTATION); - gtk_label_set_justify (GTK_LABEL (indent), GTK_JUSTIFY_LEFT); - gtk_box_pack_start (GTK_BOX (hbox), indent, FALSE, FALSE, 0); - gtk_widget_show (indent); - - control_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (hbox), control_vbox, TRUE, TRUE, 0); - gtk_widget_show (control_vbox); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - label_size = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - - orient = mate_panel_applet_get_orient(ma->applet); - if ( (orient == MATE_PANEL_APPLET_ORIENT_UP) || (orient == MATE_PANEL_APPLET_ORIENT_DOWN) ) - label_text = g_strdup(_("System m_onitor width: ")); - else - label_text = g_strdup(_("System m_onitor height: ")); - - label = gtk_label_new_with_mnemonic(label_text); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_size_group_add_widget (label_size, label); - gtk_box_pack_start (GTK_BOX (control_hbox), label, FALSE, FALSE, 0); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (control_hbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - spin_size = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - - spin_button = gtk_spin_button_new_with_range(10, 1000, 5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin_button); - g_object_set_data(G_OBJECT(spin_button), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(spin_button), "prop_type", - GINT_TO_POINTER(PROP_SIZE)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_button), - (gdouble)g_settings_get_int(ma->settings, "size")); - g_signal_connect(G_OBJECT(spin_button), "value_changed", - G_CALLBACK(spin_button_changed_cb), "size"); - - if ( ! g_settings_is_writable (ma->settings, "size")) { - hard_set_sensitive (label, FALSE); - hard_set_sensitive (hbox, FALSE); - } - - gtk_size_group_add_widget (spin_size, spin_button); - gtk_box_pack_start (GTK_BOX (hbox), spin_button, FALSE, FALSE, 0); - - label = gtk_label_new (_("pixels")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - label = gtk_label_new_with_mnemonic(_("Sys_tem monitor update interval: ")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_size_group_add_widget (label_size, label); - gtk_box_pack_start (GTK_BOX (control_hbox), label, FALSE, FALSE, 0); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (control_hbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - spin_button = gtk_spin_button_new_with_range(50, 10000, 50); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin_button); - g_object_set_data(G_OBJECT(spin_button), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(spin_button), "prop_type", - GINT_TO_POINTER(PROP_SPEED)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_button), - (gdouble)g_settings_get_int (ma->settings, "speed")); - g_signal_connect(G_OBJECT(spin_button), "value_changed", - G_CALLBACK(spin_button_changed_cb), "speed"); - gtk_size_group_add_widget (spin_size, spin_button); - gtk_box_pack_start (GTK_BOX (hbox), spin_button, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, "speed")) { - hard_set_sensitive (label, FALSE); - hard_set_sensitive (hbox, FALSE); - } - - label = gtk_label_new(_("milliseconds")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - g_free(label_text); - - - category_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (categories_vbox), category_vbox, TRUE, TRUE, 0); - gtk_widget_show (category_vbox); - - title = g_strconcat ("<span weight=\"bold\">", _("Colors"), "</span>", NULL); - label = gtk_label_new (title); - gtk_label_set_use_markup (GTK_LABEL (label), TRUE); - gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); - gtk_label_set_xalign (GTK_LABEL (label), 0.0); - gtk_box_pack_start (GTK_BOX (category_vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - g_free (title); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_pack_start (GTK_BOX (category_vbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - indent = gtk_label_new (HIG_IDENTATION); - gtk_label_set_justify (GTK_LABEL (indent), GTK_JUSTIFY_LEFT); - gtk_box_pack_start (GTK_BOX (hbox), indent, FALSE, FALSE, 0); - gtk_widget_show (indent); - - control_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (hbox), control_vbox, TRUE, TRUE, 0); - gtk_widget_show (control_vbox); - - ma->notebook = gtk_notebook_new(); - gtk_container_add (GTK_CONTAINER (control_vbox), ma->notebook); - - page = add_page(ma->notebook, _("Processor")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector(page, _("_User"), "cpuload-color0", ma); - add_color_selector(page, _("S_ystem"), "cpuload-color1", ma); - add_color_selector(page, _("N_ice"), "cpuload-color2", ma); - add_color_selector(page, _("I_OWait"), "cpuload-color3", ma); - add_color_selector(page, _("I_dle"), "cpuload-color4", ma); - - page = add_page(ma->notebook, _("Memory")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector(page, _("_User"), "memload-color0", ma); - add_color_selector(page, _("Sh_ared"), "memload-color1", ma); - add_color_selector(page, _("_Buffers"), "memload-color2", ma); - add_color_selector (page, _("Cach_ed"), "memload-color3", ma); - add_color_selector(page, _("F_ree"), "memload-color4", ma); - - page = add_page(ma->notebook, _("Network")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector (page, _("_In"), "netload2-color0", ma); - add_color_selector(page, _("_Out"), "netload2-color1", ma); - add_color_selector (page, _("_Local"), "netload2-color2", ma); - add_color_selector(page, _("_Background"), "netload2-color3", ma); - add_color_selector(page, _("_Gridline"), "netload2-color4", ma); - add_color_selector(page, _("_Indicator"), "netload2-color5", ma); - - page = add_page(ma->notebook, _("Swap Space")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector(page, _("_Used"), "swapload-color0", ma); - add_color_selector(page, _("_Free"), "swapload-color1", ma); - - page = add_page(ma->notebook, _("Load")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector(page, _("_Average"), "loadavg-color0", ma); - add_color_selector(page, _("_Background"), "loadavg-color1", ma); - add_color_selector(page, _("_Gridline"), "loadavg-color2", ma); - - page = add_page (ma->notebook, _("Harddisk")); - gtk_container_set_border_width (GTK_CONTAINER (page), 12); - add_color_selector (page, _("_Read"), "diskload-color0", ma); - add_color_selector (page, _("_Write"), "diskload-color1", ma); - add_color_selector (page, _("_Background"), "diskload-color2", ma); - GtkWidget *nvme_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - GtkWidget *nvme_checkbox = gtk_check_button_new_with_mnemonic (_("Use diskstats for NVMe")); - ma->nvme_diskstats = g_settings_get_boolean (ma->settings, "diskload-nvme-diskstats"); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (nvme_checkbox), - ma->nvme_diskstats); - g_signal_connect (G_OBJECT (nvme_checkbox), "toggled", - G_CALLBACK (nvme_checkbox_toggled_cb), ma); - gtk_box_pack_start (GTK_BOX(nvme_box), nvme_checkbox, FALSE, FALSE, 0); - gtk_box_pack_start (GTK_BOX(page), nvme_box, FALSE, FALSE, 0); - gtk_widget_show (nvme_box); - - title = g_strconcat ("<span weight=\"bold\">", _("Network speed thresholds"), "</span>", NULL); - label = gtk_label_new (title); - gtk_label_set_use_markup (GTK_LABEL (label), TRUE); - gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); - gtk_label_set_xalign (GTK_LABEL (label), 0.0); - gtk_box_pack_start (GTK_BOX (category_vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - g_free (title); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_pack_start (GTK_BOX (category_vbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - indent = gtk_label_new (HIG_IDENTATION); - gtk_label_set_justify (GTK_LABEL (indent), GTK_JUSTIFY_LEFT); - gtk_box_pack_start (GTK_BOX (hbox), indent, FALSE, FALSE, 0); - gtk_widget_show (indent); - - control_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (hbox), control_vbox, TRUE, TRUE, 0); - gtk_widget_show (control_vbox); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - label_size = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - - label_text = g_strdup(_("Threshold 1: ")); - label = gtk_label_new_with_mnemonic(label_text); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_size_group_add_widget (label_size, label); - gtk_box_pack_start (GTK_BOX (control_hbox), label, FALSE, FALSE, 0); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (control_hbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - spin_size = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - - spin_button = gtk_spin_button_new_with_range (MIN_NET_THRESHOLD1, MAX_NET_THRESHOLD1, 5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin_button); - g_object_set_data(G_OBJECT(spin_button), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(spin_button), "prop_type", - GUINT_TO_POINTER(PROP_NET_THRESHOLD1)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_button), - (gdouble)g_settings_get_uint(ma->settings, "netthreshold1")); - g_signal_connect(G_OBJECT(spin_button), "value_changed", - G_CALLBACK(spin_button_changed_cb), "netthreshold1"); - - if ( ! g_settings_is_writable (ma->settings, "netthreshold1")) - { - hard_set_sensitive (label, FALSE); - hard_set_sensitive (hbox, FALSE); - } - - gtk_size_group_add_widget (spin_size, spin_button); - gtk_box_pack_start (GTK_BOX (hbox), spin_button, FALSE, FALSE, 0); - - label = gtk_label_new (_("bytes")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - label = gtk_label_new_with_mnemonic(_("Threshold 2: ")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_size_group_add_widget (label_size, label); - gtk_box_pack_start (GTK_BOX (control_hbox), label, FALSE, FALSE, 0); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (control_hbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - spin_button = gtk_spin_button_new_with_range (MIN_NET_THRESHOLD2, MAX_NET_THRESHOLD2, 5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin_button); - g_object_set_data(G_OBJECT(spin_button), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(spin_button), "prop_type", - GINT_TO_POINTER(PROP_NET_THRESHOLD2)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_button), - (gdouble)g_settings_get_uint (ma->settings, "netthreshold2")); - g_signal_connect(G_OBJECT(spin_button), "value_changed", - G_CALLBACK(spin_button_changed_cb), "netthreshold2"); - gtk_size_group_add_widget (spin_size, spin_button); - gtk_box_pack_start (GTK_BOX (hbox), spin_button, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, "netthreshold2")) - { - hard_set_sensitive (label, FALSE); - hard_set_sensitive (hbox, FALSE); - } - - label = gtk_label_new(_("bytes")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - label = gtk_label_new_with_mnemonic(_("Threshold 3: ")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_size_group_add_widget (label_size, label); - gtk_box_pack_start (GTK_BOX (control_hbox), label, FALSE, FALSE, 0); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (control_hbox), hbox, TRUE, TRUE, 0); - gtk_widget_show (hbox); - - spin_button = gtk_spin_button_new_with_range (MIN_NET_THRESHOLD3, MAX_NET_THRESHOLD3, 5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin_button); - g_object_set_data(G_OBJECT(spin_button), "MultiloadApplet", ma); - g_object_set_data(G_OBJECT(spin_button), "prop_type", - GINT_TO_POINTER(PROP_NET_THRESHOLD3)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_button), - (gdouble)g_settings_get_uint (ma->settings, "netthreshold3")); - g_signal_connect(G_OBJECT(spin_button), "value_changed", - G_CALLBACK(spin_button_changed_cb), "netthreshold3"); - gtk_size_group_add_widget (spin_size, spin_button); - gtk_box_pack_start (GTK_BOX (hbox), spin_button, FALSE, FALSE, 0); - - if ( ! g_settings_is_writable (ma->settings, "netthreshold3")) - { - hard_set_sensitive (label, FALSE); - hard_set_sensitive (hbox, FALSE); - } - - label = gtk_label_new(_("bytes")); - gtk_label_set_xalign (GTK_LABEL (label), 0.0f); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - g_free(label_text); - - category_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); - gtk_box_pack_start (GTK_BOX (categories_vbox), category_vbox, TRUE, TRUE, 0); - - control_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); - gtk_box_pack_start (GTK_BOX (control_vbox), control_hbox, TRUE, TRUE, 0); - gtk_widget_show (control_hbox); - - gtk_widget_show (category_vbox); - - return; -} - -/* show properties dialog */ -void -multiload_properties_cb (GtkAction *action, - MultiloadApplet *ma) -{ - GtkWidget *dialog = NULL; - - if (ma->prop_dialog) { - dialog = ma->prop_dialog; - - gtk_window_set_screen (GTK_WINDOW (dialog), - gtk_widget_get_screen (GTK_WIDGET (ma->applet))); - - gtk_notebook_set_current_page (GTK_NOTEBOOK (ma->notebook), - ma->last_clicked); - gtk_window_present (GTK_WINDOW (dialog)); - return; - } - - dialog = gtk_dialog_new_with_buttons (_("System Monitor Preferences"), - NULL, 0, - "gtk-help", GTK_RESPONSE_HELP, - "gtk-close", GTK_RESPONSE_CLOSE, - NULL); - gtk_window_set_screen (GTK_WINDOW (dialog), - gtk_widget_get_screen (GTK_WIDGET (ma->applet))); - gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CLOSE); - gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); - gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); - gtk_box_set_spacing (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), 2); - - fill_properties(dialog, ma); - - properties_set_insensitive(ma); - - g_signal_connect(G_OBJECT(dialog), "response", - G_CALLBACK(properties_close_cb), ma); - - ma->prop_dialog = dialog; - - gtk_widget_show_all(dialog); - - gtk_notebook_set_current_page (GTK_NOTEBOOK (ma->notebook), - ma->last_clicked); -} diff --git a/multiload/src/Makefile.am b/multiload/src/Makefile.am new file mode 100644 index 00000000..6b42871f --- /dev/null +++ b/multiload/src/Makefile.am @@ -0,0 +1,59 @@ +NULL = + +AM_CPPFLAGS = \ + -I$(srcdir) \ + -DMULTILOAD_RESOURCE_PATH=\""/org/mate/mate-applets/multiload/"\" \ + $(MATE_APPLETS4_CFLAGS) \ + $(GTOP_APPLETS_CFLAGS) \ + $(GIO_CFLAGS) \ + ${WARN_CFLAGS} + +BUILT_SOURCES = \ + multiload-resources.c \ + multiload-resources.h \ + $(NULL) +APPLET_SOURCES = \ + global.h \ + linux-proc.h \ + load-graph.h \ + linux-proc.c \ + load-graph.c \ + main.c \ + properties.c \ + netspeed.c netspeed.h \ + autoscaler.c \ + autoscaler.h \ + $(NULL) + +APPLET_LIBS = \ + $(MATE_APPLETS4_LIBS) \ + $(GTOP_APPLETS_LIBS) \ + $(GIO_LIBS) \ + -lm + +if ENABLE_IN_PROCESS +pkglib_LTLIBRARIES = libmate-multiload-applet.la +nodist_libmate_multiload_applet_la_SOURCES = $(BUILT_SOURCES) +libmate_multiload_applet_la_SOURCES = $(APPLET_SOURCES) +libmate_multiload_applet_la_CFLAGS = $(AM_CFLAGS) +libmate_multiload_applet_la_LDFLAGS = -module -avoid-version +libmate_multiload_applet_la_LIBADD = $(APPLET_LIBS) +else !ENABLE_IN_PROCESS +libexec_PROGRAMS = mate-multiload-applet +nodist_mate_multiload_applet_SOURCES = $(BUILT_SOURCES) +mate_multiload_applet_SOURCES = $(APPLET_SOURCES) +mate_multiload_applet_CFLAGS = $(AM_CFLAGS) +mate_multiload_applet_LDADD = $(APPLET_LIBS) +endif !ENABLE_IN_PROCESS + +multiload-resources.c: $(srcdir)/../data/multiload-resources.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/../data --generate-dependencies $(srcdir)/../data/multiload-resources.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/../data --generate --c-name multiload $< + +multiload-resources.h: $(srcdir)/../data/multiload-resources.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/../data --generate-dependencies $(srcdir)/../data/multiload-resources.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/../data --generate --c-name multiload $< + +CLEANFILES = \ + $(BUILT_SOURCES) \ + $(NULL) + +-include $(top_srcdir)/git.mk diff --git a/multiload/autoscaler.c b/multiload/src/autoscaler.c index 735b2713..fb03533f 100644 --- a/multiload/autoscaler.c +++ b/multiload/src/autoscaler.c @@ -1,42 +1,44 @@ -#include <time.h> #include <glib.h> #include "autoscaler.h" /* i wish i could have used C99 initializers instead of writing this function */ -void autoscaler_init(AutoScaler *that, unsigned interval, unsigned floor) +void +autoscaler_init (AutoScaler *that, + gint64 interval, + guint64 floor) { that->update_interval = interval; that->floor = floor; that->max = 0; that->count = 0; that->last_update = 0; - that->sum = 0.0f; + that->sum = 0; that->last_average = 0.0f; } - -unsigned autoscaler_get_max(AutoScaler *that, unsigned current) +guint64 +autoscaler_get_max (AutoScaler *that, + guint64 current) { - time_t now; + gint64 now; that->sum += current; that->count++; - time(&now); + now = g_get_monotonic_time (); - if((float)difftime(now, that->last_update) > that->update_interval) + if ((now - that->last_update) > that->update_interval) { - float new_average = that->sum / that->count; + float new_average = (float) that->sum / (float) that->count; float average; - if(new_average < that->last_average) + if (new_average < that->last_average) average = ((that->last_average * 0.5f) + new_average) / 1.5f; else average = new_average; - that->max = average * 1.2f; - - that->sum = 0.0f; + that->max = (guint64) (average * 1.2f); + that->sum = 0; that->count = 0; that->last_update = now; that->last_average = average; diff --git a/multiload/src/autoscaler.h b/multiload/src/autoscaler.h new file mode 100644 index 00000000..ef4e0946 --- /dev/null +++ b/multiload/src/autoscaler.h @@ -0,0 +1,22 @@ +#ifndef MATE_APPLETS_MULTILOAD_AUTOSCALER_H +#define MATE_APPLETS_MULTILOAD_AUTOSCALER_H + +#include <glib.h> + +typedef struct _AutoScaler AutoScaler; + +struct _AutoScaler +{ + gint64 update_interval; + gint64 last_update; + guint64 floor; + guint64 max; + guint64 count; + guint64 sum; + float last_average; +}; + +G_GNUC_INTERNAL void autoscaler_init (AutoScaler *that, gint64 interval, guint64 floor); +G_GNUC_INTERNAL guint64 autoscaler_get_max (AutoScaler *that, guint64 current); + +#endif /* MATE_APPLETS_MULTILOAD_AUTOSCALER_H */ diff --git a/multiload/global.h b/multiload/src/global.h index da3383c4..f40f194a 100644 --- a/multiload/global.h +++ b/multiload/src/global.h @@ -10,6 +10,34 @@ G_BEGIN_DECLS +#define KEY_CPULOAD_USR_COLOR "cpuload-color0" +#define KEY_CPULOAD_SYS_COLOR "cpuload-color1" +#define KEY_CPULOAD_NICE_COLOR "cpuload-color2" +#define KEY_CPULOAD_IOWAIT_COLOR "cpuload-color3" +#define KEY_CPULOAD_IDLE_COLOR "cpuload-color4" +#define KEY_MEMLOAD_USER_COLOR "memload-color0" +#define KEY_MEMLOAD_SHARED_COLOR "memload-color1" +#define KEY_MEMLOAD_BUFFER_COLOR "memload-color2" +#define KEY_MEMLOAD_CACHED_COLOR "memload-color3" +#define KEY_MEMLOAD_FREE_COLOR "memload-color4" +#define KEY_NETLOAD2_IN_COLOR "netload2-color0" +#define KEY_NETLOAD2_OUT_COLOR "netload2-color1" +#define KEY_NETLOAD2_LOOPBACK_COLOR "netload2-color2" +#define KEY_NETLOAD2_BACKGROUND_COLOR "netload2-color3" +#define KEY_NETLOAD2_GRIDLINE_COLOR "netload2-color4" +#define KEY_NETLOAD2_INDICATOR_COLOR "netload2-color5" +#define KEY_SWAPLOAD_USED_COLOR "swapload-color0" +#define KEY_SWAPLOAD_FREE_COLOR "swapload-color1" +#define KEY_LOADAVG_AVERAGE_COLOR "loadavg-color0" +#define KEY_LOADAVG_BACKGROUND_COLOR "loadavg-color1" +#define KEY_LOADAVG_GRIDLINE_COLOR "loadavg-color2" +#define KEY_DISKLOAD_READ_COLOR "diskload-color0" +#define KEY_DISKLOAD_WRITE_COLOR "diskload-color1" +#define KEY_DISKLOAD_FREE_COLOR "diskload-color2" + +#define KEY_NET_THRESHOLD1 "netthreshold1" +#define KEY_NET_THRESHOLD2 "netthreshold2" +#define KEY_NET_THRESHOLD3 "netthreshold3" #define MIN_NET_THRESHOLD1 10 #define MIN_NET_THRESHOLD2 11 #define MIN_NET_THRESHOLD3 12 @@ -24,9 +52,19 @@ G_BEGIN_DECLS #define VIEW_LOADAVG_KEY "view-loadavg" #define VIEW_DISKLOAD_KEY "view-diskload" +#define DISKLOAD_NVME_KEY "diskload-nvme-diskstats" + +#define REFRESH_RATE_KEY "speed" +#define REFRESH_RATE_MIN 50 +#define REFRESH_RATE_MAX 60000 + +#define GRAPH_SIZE_KEY "size" +#define GRAPH_SIZE_MIN 10 +#define GRAPH_SIZE_MAX 1000 + typedef struct _MultiloadApplet MultiloadApplet; typedef struct _LoadGraph LoadGraph; -typedef void (*LoadGraphDataFunc) (int, int [], LoadGraph *); +typedef void (*LoadGraphDataFunc) (guint64, guint64 [], LoadGraph *); #include "netspeed.h" @@ -41,6 +79,15 @@ typedef enum { } E_graph; typedef enum { + cpuload_usr = 0, + cpuload_sys, + cpuload_nice, + cpuload_iowait, + cpuload_free, + cpuload_n +} E_cpuload; + +typedef enum { memload_user = 0, memload_shared, memload_buffer, @@ -50,13 +97,27 @@ typedef enum { } E_memload; typedef enum { - cpuload_usr = 0, - cpuload_sys, - cpuload_nice, - cpuload_iowait, - cpuload_free, - cpuload_n -} E_cpuload; + netload2_in = 0, + netload2_out, + netload2_loopback, + netload2_background, + netload2_gridline, + netload2_indicator, + netload2_n +} E_netload2; + +typedef enum { + swapload_used = 0, + swapload_free, + swapload_n +} E_swapload; + +typedef enum { + loadavg_average = 0, + loadavg_background, + loadavg_gridline, + loadavg_n +} E_loadavg; typedef enum { diskload_read = 0, @@ -65,27 +126,22 @@ typedef enum { diskload_n } E_diskload; -typedef enum { - swapload_used = 0, - swapload_free, - swapload_n -} E_swapload; - struct _LoadGraph { MultiloadApplet *multiload; - guint n, id; + guint n; + gint id; guint speed, size; guint orient, pixel_size; - guint draw_width, draw_height; + gsize draw_width; + guint64 draw_height; LoadGraphDataFunc get_data; guint allocated; GdkRGBA *colors; - gint **data; - guint data_size; - guint *pos; + guint64 **data; + guint64 *pos; GtkWidget *main_widget; GtkWidget *frame, *box, *disp; @@ -118,12 +174,12 @@ struct _MultiloadApplet GtkWidget *check_boxes [graph_n]; GtkWidget *prop_dialog; GtkWidget *notebook; - int last_clicked; + gint last_clicked; - float cpu_used_ratio; - long cpu_time [cpuload_n]; - long cpu_last [cpuload_n]; - int cpu_initialized; + float cpu_used_ratio; + guint64 cpu_time [cpuload_n]; + guint64 cpu_last [cpuload_n]; + gboolean cpu_initialized; double loadavg1; @@ -138,9 +194,9 @@ struct _MultiloadApplet NetSpeed *netspeed_in; NetSpeed *netspeed_out; - guint net_threshold1; - guint net_threshold2; - guint net_threshold3; + guint64 net_threshold1; + guint64 net_threshold2; + guint64 net_threshold3; }; #include "load-graph.h" diff --git a/multiload/linux-proc.c b/multiload/src/linux-proc.c index 6059e9e3..f5549f67 100644 --- a/multiload/linux-proc.c +++ b/multiload/src/linux-proc.c @@ -2,7 +2,6 @@ #include <config.h> #include <sys/types.h> #include <sys/statvfs.h> -#include <math.h> #include <fcntl.h> #include <unistd.h> @@ -47,15 +46,15 @@ static const unsigned needed_netload_flags = (1 << GLIBTOP_NETLOAD_BYTES_TOTAL); void -GetLoad (int Maximum, - int data [cpuload_n], +GetLoad (guint64 Maximum, + guint64 data [cpuload_n], LoadGraph *g) { MultiloadApplet *multiload; glibtop_cpu cpu; - long cpu_aux [cpuload_n], used = 0, total = 0; - int current_scaled, used_scaled = 0; - int i; + guint64 cpu_aux [cpuload_n], used = 0, total = 0; + guint64 current_scaled, used_scaled = 0; + unsigned i; glibtop_get_cpu (&cpu); @@ -71,7 +70,7 @@ GetLoad (int Maximum, if (!multiload->cpu_initialized) { memcpy (multiload->cpu_last, multiload->cpu_time, sizeof (multiload->cpu_last)); - multiload->cpu_initialized = 1; + multiload->cpu_initialized = TRUE; } for (i = 0; i < cpuload_n; i++) { @@ -81,7 +80,7 @@ GetLoad (int Maximum, for (i = 0; i < cpuload_free; i++) { used += cpu_aux [i]; - current_scaled = rint ((float)(cpu_aux [i] * Maximum) / (float)total); + current_scaled = (guint64) ((float)(cpu_aux [i] * Maximum) / (float)total); used_scaled += current_scaled; data [i] = current_scaled; } @@ -93,28 +92,26 @@ GetLoad (int Maximum, } void -GetDiskLoad (int Maximum, - int data [diskload_n], +GetDiskLoad (guint64 Maximum, + guint64 data [diskload_n], LoadGraph *g) { static gboolean first_call = TRUE; static guint64 lastread = 0, lastwrite = 0; static AutoScaler scaler; - guint i; - int max; - + guint64 max; guint64 read, write; guint64 readdiff, writediff; + guint i; MultiloadApplet *multiload; multiload = g->multiload; - if(first_call) { - autoscaler_init(&scaler, 60, 500); + autoscaler_init (&scaler, g->speed, 500); } read = write = 0; @@ -179,7 +176,8 @@ GetDiskLoad (int Maximum, } glibtop_get_fsusage(&fsusage, mountentries[i].mountdir); - read += fsusage.read; write += fsusage.write; + read += fsusage.read; + write += fsusage.write; } g_free(mountentries); @@ -202,8 +200,8 @@ GetDiskLoad (int Maximum, multiload->diskload_used_ratio = (float)(readdiff + writediff) / (float)max; - data [diskload_read] = rint ((float)Maximum * (float)readdiff / (float)max); - data [diskload_write] = rint ((float)Maximum * (float)writediff / (float)max); + data [diskload_read] = (guint64) ((float)Maximum * (float)readdiff / (float)max); + data [diskload_write] = (guint64) ((float)Maximum * (float)writediff / (float)max); data [diskload_free] = Maximum - (data [0] + data[1]); } @@ -220,14 +218,14 @@ GetDiskLoad (int Maximum, * aux [memload_buffer] = mem.buffer; */ void -GetMemory (int Maximum, - int data [memload_n], +GetMemory (guint64 Maximum, + guint64 data [memload_n], LoadGraph *g) { MultiloadApplet *multiload; glibtop_mem mem; guint64 aux [memload_n], cache = 0; - int current_scaled, used_scaled = 0; + guint64 current_scaled, used_scaled = 0; int i; glibtop_get_mem (&mem); @@ -245,7 +243,7 @@ GetMemory (int Maximum, aux [memload_buffer] = mem.buffer; for (i = 0; i < memload_free; i++) { - current_scaled = rint ((float)(aux [i] * Maximum) / (float)mem.total); + current_scaled = (guint64) ((float)(aux [i] * Maximum) / (float)mem.total); if (i != memload_user) { cache += aux [i]; } @@ -261,11 +259,11 @@ GetMemory (int Maximum, } void -GetSwap (int Maximum, - int data [swapload_n], +GetSwap (guint64 Maximum, + guint64 data [swapload_n], LoadGraph *g) { - int used; + guint64 used; MultiloadApplet *multiload; glibtop_swap swap; @@ -282,7 +280,7 @@ GetSwap (int Maximum, float ratio; ratio = (float)swap.used / (float)swap.total; - used = rint ((float) Maximum * ratio); + used = (guint64) ((float) Maximum * ratio); multiload->swapload_used_ratio = ratio; } @@ -291,8 +289,8 @@ GetSwap (int Maximum, } void -GetLoadAvg (int Maximum, - int data [2], +GetLoadAvg (guint64 Maximum, + guint64 data [2], LoadGraph *g) { glibtop_loadavg loadavg; @@ -305,7 +303,7 @@ GetLoadAvg (int Maximum, multiload = g->multiload; multiload->loadavg1 = loadavg.loadavg[0]; - data [0] = rint ((float) Maximum * loadavg.loadavg[0]); + data [0] = (guint64) ((float) Maximum * loadavg.loadavg[0]); data [1] = Maximum - data[0]; } @@ -351,8 +349,8 @@ is_net_device_virtual(char *device) } void -GetNet (int Maximum, - int data [4], +GetNet (guint64 Maximum, + guint64 data [4], LoadGraph *g) { enum Types { @@ -363,10 +361,9 @@ GetNet (int Maximum, }; static int ticks = 0; - static gulong past[COUNT_TYPES] = {0}; - static AutoScaler scaler; + static guint64 past[COUNT_TYPES] = {0}; - gulong present[COUNT_TYPES] = {0}; + guint64 present[COUNT_TYPES] = {0}; guint i; gchar **devices; @@ -375,12 +372,6 @@ GetNet (int Maximum, MultiloadApplet *multiload; multiload = g->multiload; - - if(ticks == 0) - { - autoscaler_init(&scaler, 60, 501); - } - devices = glibtop_get_netlist(&netlist); for(i = 0; i < netlist.number; ++i) @@ -418,24 +409,21 @@ GetNet (int Maximum, if(ticks < 2) /* avoid initial spike */ { ticks++; - memset(data, 0, COUNT_TYPES * sizeof data[0]); + memset(data, 0, (COUNT_TYPES + 1) * sizeof data[0]); } else { - int delta[COUNT_TYPES]; - + data[COUNT_TYPES] = 0; + float seconds = (float) g->speed / 1000.0f; for (i = 0; i < COUNT_TYPES; i++) { /* protect against weirdness */ if (present[i] >= past[i]) - delta[i] = (present[i] - past[i]); + data[i] = (guint) ((float) (present[i] - past[i]) / seconds); else - delta[i] = 0; + data[i] = 0; + data[COUNT_TYPES] += data[i]; } - - for (i = 0; i < COUNT_TYPES; i++) - data[i] = delta[i]; - } memcpy(past, present, sizeof past); diff --git a/multiload/src/linux-proc.h b/multiload/src/linux-proc.h new file mode 100644 index 00000000..fb18ef59 --- /dev/null +++ b/multiload/src/linux-proc.h @@ -0,0 +1,13 @@ +#ifndef LINUX_PROC_H__ +#define LINUX_PROC_H__ + +#include <load-graph.h> + +G_GNUC_INTERNAL void GetLoad (guint64 Maximum, guint64 data [cpuload_n], LoadGraph *g); +G_GNUC_INTERNAL void GetDiskLoad (guint64 Maximum, guint64 data [diskload_n], LoadGraph *g); +G_GNUC_INTERNAL void GetMemory (guint64 Maximum, guint64 data [memload_n], LoadGraph *g); +G_GNUC_INTERNAL void GetSwap (guint64 Maximum, guint64 data [swapload_n], LoadGraph *g); +G_GNUC_INTERNAL void GetLoadAvg (guint64 Maximum, guint64 data [2], LoadGraph *g); +G_GNUC_INTERNAL void GetNet (guint64 Maximum, guint64 data [4], LoadGraph *g); + +#endif diff --git a/multiload/load-graph.c b/multiload/src/load-graph.c index 953dc5b2..e8ca8bd3 100644 --- a/multiload/load-graph.c +++ b/multiload/src/load-graph.c @@ -30,27 +30,25 @@ static void shift_right(LoadGraph *g) { - unsigned i; - int* last_data; + guint64 *last_data; + gsize i; /* data[g->draw_width - 1] becomes data[0] */ last_data = g->data[g->draw_width - 1]; /* data[i+1] = data[i] */ - for(i = g->draw_width - 1; i != 0; --i) - g->data[i] = g->data[i - 1]; + for (i = g->draw_width - 1; i != 0; --i) + g->data[i] = g->data[i - 1]; g->data[0] = last_data; } - /* Redraws the backing pixmap for the load graph and updates the window */ static void load_graph_draw (LoadGraph *g) { guint i, j, k; cairo_t *cr; - int load; MultiloadApplet *multiload; multiload = g->multiload; @@ -62,7 +60,8 @@ load_graph_draw (LoadGraph *g) if (!g->surface) g->surface = gdk_window_create_similar_surface (gtk_widget_get_window (g->disp), CAIRO_CONTENT_COLOR, - g->draw_width, g->draw_height); + (int) g->draw_width, + (int) g->draw_height); cr = cairo_create (g->surface); cairo_set_line_width (cr, 1.0); @@ -70,46 +69,24 @@ load_graph_draw (LoadGraph *g) cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND); /* all graphs except Load and Net go this path */ - if (g->id != graph_loadavg && g->id != graph_netload2) - { - for (i = 0; i < g->draw_width; i++) - g->pos [i] = g->draw_height - 1; - - for (j = 0; j < g->n; j++) - { - gdk_cairo_set_source_rgba (cr, &(g->colors [j])); + switch (g->id) { - for (i = 0; i < g->draw_width; i++) - { - if (g->data [i][j] != 0) - { - cairo_move_to (cr, g->draw_width - i - 0.5, g->pos[i] + 0.5); - cairo_line_to (cr, g->draw_width - i - 0.5, g->pos[i] - (g->data [i][j] - 0.5)); - } - g->pos [i] -= g->data [i][j]; - } - cairo_stroke (cr); - } - } /* This is for network graph */ - else if (g->id == graph_netload2) - { - guint maxnet = 1; - gint segments = 1; - gint combined; - guint net_threshold; + case graph_netload2: { + guint64 maxnet = 1; + guint64 segments = 1; + guint64 net_threshold; + guint level = 0; + double ratio; + double spacing; for (i = 0; i < g->draw_width; i++) { g->pos [i] = g->draw_height - 1; - combined = g->data[i][0] + - g->data[i][1] + - g->data[i][2]; - if (combined > maxnet) - maxnet = combined; + if (g->data[i][3] > maxnet) + maxnet = g->data[i][3]; } //printf("max = %d ", maxnet); - guint level = 0; if (maxnet > multiload->net_threshold3) { net_threshold = multiload->net_threshold3; level = 3; @@ -121,15 +98,14 @@ load_graph_draw (LoadGraph *g) } else { net_threshold = multiload->net_threshold1; - level = 1; - if (maxnet < multiload->net_threshold1) - level = 0; + if (maxnet >= multiload->net_threshold1) + level = 1; } //printf("level %d maxnet = %d ", level, maxnet); maxnet = maxnet/net_threshold; segments = MAX (maxnet+1,1); - float ratio = (float)g->draw_height/net_threshold/segments; + ratio = (double) g->draw_height / (double) (net_threshold*segments); //printf("segments %d ratio = %f t1=%ld t2=%ld t3=%ld t=%ld\n", segments, ratio, multiload->net_threshold1, multiload->net_threshold2, multiload->net_threshold3, multiload->net_threshold); for (j = 0; j < g->n-1; j++) @@ -138,9 +114,10 @@ load_graph_draw (LoadGraph *g) for (i = 0; i < g->draw_width; i++) { - cairo_move_to (cr, g->draw_width - i - 0.5, g->pos[i] + 0.5); - cairo_line_to (cr, g->draw_width - i - 0.5, g->pos[i] - 0.5 - ((g->data [i][j] * ratio))); - g->pos [i] -= ((g->data [i][j] * ratio)); + double x = (double) (g->draw_width - i) - 0.5; + cairo_move_to (cr, x, (double) g->pos[i] + 0.5); + cairo_line_to (cr, x, (double) g->pos[i] - 0.5 - (((double) g->data [i][j] * ratio))); + g->pos [i] -= (guint64) ((double) g->data [i][j] * ratio); } cairo_stroke (cr); } @@ -150,20 +127,20 @@ load_graph_draw (LoadGraph *g) gdk_cairo_set_source_rgba (cr, &(g->colors [j])); for (i = 0; i < g->draw_width; i++) { - cairo_move_to (cr, g->draw_width - i - 0.5, g->pos[i] + 0.5); - cairo_line_to (cr, g->draw_width - i - 0.5, 0.5); + double x = (double) (g->draw_width - i) - 0.5; + cairo_move_to (cr, x, (double) g->pos[i] + 0.5); + cairo_line_to (cr, x, 0.5); } cairo_stroke (cr); } /* draw grid lines if needed */ gdk_cairo_set_source_rgba (cr, &(g->colors [4])); - double spacing; for (k = 0; k < segments -1; k++) { - spacing = ((double) g->draw_height/segments) * (k+1); + spacing = ((double) g->draw_height / (double) segments) * (k+1); cairo_move_to (cr, 0.5, spacing); - cairo_line_to (cr, g->draw_width-0.5, spacing); + cairo_line_to (cr, (double) g->draw_width - 0.5, spacing); } cairo_stroke (cr); /* draw indicator if needed */ @@ -171,15 +148,19 @@ load_graph_draw (LoadGraph *g) { gdk_cairo_set_source_rgba (cr, &(g->colors [5])); for (k = 0; k< level; k++ ) - cairo_rectangle(cr, 0.5, (k*2) * g->draw_height/5, 5, g->draw_height/5); + cairo_rectangle (cr, + 0.5, (double) k * 2.0 * (double) g->draw_height / 5.0, + 5.0, (double) g->draw_height / 5.0); cairo_fill(cr); } cairo_stroke (cr); + break; } + /* this is Load graph */ - else - { - guint maxload = 1; + case graph_loadavg: { + double load; + guint64 maxload = 1; for (i = 0; i < g->draw_width; i++) { g->pos [i] = g->draw_height - 1; @@ -187,8 +168,7 @@ load_graph_draw (LoadGraph *g) if (g->data[i][0] > maxload) maxload = g->data[i][0]; } - load = ceil ((double) (maxload/g->draw_height)) + 1; - load = MAX (load,1); + load = ceil ((double) maxload / (double) g->draw_height) + 1.0; for (j = 0; j < g->n; j++) { @@ -196,16 +176,17 @@ load_graph_draw (LoadGraph *g) for (i = 0; i < g->draw_width; i++) { - cairo_move_to (cr, g->draw_width - i - 0.5, g->pos[i] + 0.5); + double x = (double) (g->draw_width - i) - 0.5; + cairo_move_to (cr, x, (double) g->pos[i] + 0.5); if (j == 0) { - cairo_line_to (cr, g->draw_width - i - 0.5, g->pos[i] - ((g->data [i][j] - 0.5)/load)); + cairo_line_to (cr, x, (double) g->pos[i] - (((double) g->data [i][j] - 0.5)/load)); } else { - cairo_line_to (cr, g->draw_width - i - 0.5, 0.5); + cairo_line_to (cr, x, 0.5); } - g->pos [i] -= g->data [i][j] / load; + g->pos [i] -= (guint64) ((double) g->data [i][j] / load); } cairo_stroke (cr); } @@ -218,11 +199,35 @@ load_graph_draw (LoadGraph *g) { spacing = ((double) g->draw_height/load) * (k+1); cairo_move_to (cr, 0.5, spacing); - cairo_line_to (cr, g->draw_width-0.5, spacing); - } + cairo_line_to (cr, (double) g->draw_width - 0.5, spacing); + } cairo_stroke (cr); + break; } + + default: + for (i = 0; i < g->draw_width; i++) + g->pos [i] = g->draw_height - 1; + + for (j = 0; j < g->n; j++) + { + gdk_cairo_set_source_rgba (cr, &(g->colors [j])); + + for (i = 0; i < g->draw_width; i++) + { + if (g->data [i][j] != 0) + { + double x = (double) (g->draw_width - i) - 0.5; + cairo_move_to (cr, x, (double) g->pos[i] + 0.5); + cairo_line_to (cr, x, (double) g->pos[i] - (double) g->data [i][j] - 0.5); + } + g->pos [i] -= g->data [i][j]; + } + cairo_stroke (cr); + } + } + gtk_widget_queue_draw (g->disp); cairo_destroy (cr); @@ -233,12 +238,12 @@ static gboolean load_graph_update (LoadGraph *g) { if (g->data == NULL) - return TRUE; + return TRUE; shift_right(g); if (g->tooltip_update) - multiload_applet_tooltip_update(g); + multiload_applet_tooltip_update (g); g->get_data (g->draw_height, g->data [0], g); @@ -249,7 +254,7 @@ load_graph_update (LoadGraph *g) void load_graph_unalloc (LoadGraph *g) { - guint i; + gsize i; if (!g->allocated) return; @@ -265,8 +270,9 @@ load_graph_unalloc (LoadGraph *g) g->pos = NULL; g->data = NULL; - g->size = g_settings_get_int(g->multiload->settings, "size"); - g->size = MAX (g->size, 10); + g->size = CLAMP (g_settings_get_uint (g->multiload->settings, GRAPH_SIZE_KEY), + GRAPH_SIZE_MIN, + GRAPH_SIZE_MAX); if (g->surface) { cairo_surface_destroy (g->surface); @@ -279,18 +285,19 @@ load_graph_unalloc (LoadGraph *g) static void load_graph_alloc (LoadGraph *g) { - guint i; + gsize i; + gsize data_size; if (g->allocated) return; - g->data = g_new0 (gint *, g->draw_width); - g->pos = g_new0 (guint, g->draw_width); + g->data = g_new0 (guint64 *, g->draw_width); + g->pos = g_new0 (guint64, g->draw_width); - g->data_size = sizeof (guint) * g->n; + data_size = sizeof (guint64) * g->n; for (i = 0; i < g->draw_width; i++) { - g->data [i] = g_malloc0 (g->data_size); + g->data [i] = g_malloc0 (data_size); } g->allocated = TRUE; @@ -307,8 +314,8 @@ load_graph_configure (GtkWidget *widget, GdkEventConfigure *event, gtk_widget_get_allocation (c->disp, &allocation); - c->draw_width = allocation.width; - c->draw_height = allocation.height; + c->draw_width = (gsize) allocation.width; + c->draw_height = (guint64) allocation.height; c->draw_width = MAX (c->draw_width, 1); c->draw_height = MAX (c->draw_height, 1); @@ -317,7 +324,8 @@ load_graph_configure (GtkWidget *widget, GdkEventConfigure *event, if (!c->surface) c->surface = gdk_window_create_similar_surface (gtk_widget_get_window (c->disp), CAIRO_CONTENT_COLOR, - c->draw_width, c->draw_height); + (int) c->draw_width, + (int) c->draw_height); gtk_widget_queue_draw (widget); return TRUE; @@ -400,7 +408,7 @@ load_graph_load_config (LoadGraph *g) LoadGraph * load_graph_new (MultiloadApplet *ma, guint n, const gchar *label, - guint id, guint speed, guint size, gboolean visible, + gint id, guint speed, guint size, gboolean visible, const gchar *name, LoadGraphDataFunc get_data) { LoadGraph *g; @@ -411,8 +419,8 @@ load_graph_new (MultiloadApplet *ma, guint n, const gchar *label, g->name = name; g->n = n; g->id = id; - g->speed = MAX (speed, 50); - g->size = MAX (size, 10); + g->speed = speed; + g->size = size; g->pixel_size = mate_panel_applet_get_size (ma->applet); g->tooltip_update = FALSE; g->multiload = ma; @@ -452,9 +460,9 @@ load_graph_new (MultiloadApplet *ma, guint n, const gchar *label, g->timer_index = -1; if (g->orient) - gtk_widget_set_size_request (g->main_widget, -1, g->size); + gtk_widget_set_size_request (g->main_widget, -1, (gint) g->size); else - gtk_widget_set_size_request (g->main_widget, g->size, -1); + gtk_widget_set_size_request (g->main_widget, (gint) g->size, -1); g->disp = gtk_drawing_area_new (); gtk_widget_set_events (g->disp, GDK_EXPOSURE_MASK | @@ -462,17 +470,17 @@ load_graph_new (MultiloadApplet *ma, guint n, const gchar *label, GDK_LEAVE_NOTIFY_MASK | GDK_BUTTON_PRESS_MASK); - g_signal_connect (G_OBJECT (g->disp), "draw", + g_signal_connect (g->disp, "draw", G_CALLBACK (load_graph_expose), g); - g_signal_connect (G_OBJECT(g->disp), "configure_event", + g_signal_connect (g->disp, "configure-event", G_CALLBACK (load_graph_configure), g); - g_signal_connect (G_OBJECT(g->disp), "destroy", + g_signal_connect (g->disp, "destroy", G_CALLBACK (load_graph_destroy), g); - g_signal_connect (G_OBJECT(g->disp), "button-press-event", + g_signal_connect (g->disp, "button-press-event", G_CALLBACK (load_graph_clicked), g); - g_signal_connect (G_OBJECT(g->disp), "enter-notify-event", + g_signal_connect (g->disp, "enter-notify-event", G_CALLBACK(load_graph_enter_cb), g); - g_signal_connect (G_OBJECT(g->disp), "leave-notify-event", + g_signal_connect (g->disp, "leave-notify-event", G_CALLBACK(load_graph_leave_cb), g); gtk_box_pack_start (GTK_BOX (g->box), g->disp, TRUE, TRUE, 0); @@ -484,18 +492,22 @@ load_graph_new (MultiloadApplet *ma, guint n, const gchar *label, void load_graph_start (LoadGraph *g) { + guint event_source_id; + if (g->timer_index != -1) - g_source_remove (g->timer_index); + g_source_remove ((guint) g->timer_index); - g->timer_index = g_timeout_add (g->speed, + event_source_id = g_timeout_add (g->speed, (GSourceFunc) load_graph_update, g); + + g->timer_index = (gint) event_source_id; } void load_graph_stop (LoadGraph *g) { if (g->timer_index != -1) - g_source_remove (g->timer_index); + g_source_remove ((guint) g->timer_index); g->timer_index = -1; } diff --git a/multiload/load-graph.h b/multiload/src/load-graph.h index 76effcd6..1f13a8d0 100644 --- a/multiload/load-graph.h +++ b/multiload/src/load-graph.h @@ -6,7 +6,7 @@ /* Create new load graph. */ G_GNUC_INTERNAL LoadGraph * load_graph_new (MultiloadApplet *multiload, guint n, const gchar *label, - guint id, guint speed, guint size, gboolean visible, + gint id, guint speed, guint size, gboolean visible, const gchar *name, LoadGraphDataFunc get_data); /* Start load graph. */ diff --git a/multiload/main.c b/multiload/src/main.c index 259bf0b5..9439b320 100644 --- a/multiload/main.c +++ b/multiload/src/main.c @@ -60,7 +60,7 @@ about_cb (GtkAction *action, "title", _("About System Monitor"), "version", VERSION, "copyright", _("Copyright \xc2\xa9 1999-2005 Free Software Foundation and others\n" - "Copyright \xc2\xa9 2012-2020 MATE developers"), + "Copyright \xc2\xa9 2012-2021 MATE developers"), "comments", _("A system load monitor capable of displaying graphs " "for CPU, ram, and swap space use, plus network " "traffic."), @@ -189,7 +189,7 @@ multiload_change_orient_cb(MatePanelApplet *applet, gint arg1, gpointer data) static void multiload_destroy_cb(GtkWidget *widget, gpointer data) { - gint i; + guint i; MultiloadApplet *ma = data; for (i = 0; i < graph_n; i++) @@ -222,7 +222,6 @@ multiload_destroy_cb(GtkWidget *widget, gpointer data) return; } - static gboolean multiload_button_press_event_cb (GtkWidget *widget, GdkEventButton *event, MultiloadApplet *ma) { @@ -350,7 +349,7 @@ multiload_create_graphs(MultiloadApplet *ma) struct { const char *label; const char *visibility_key; const char *name; - int num_colours; + guint num_colours; LoadGraphDataFunc callback; } graph_types [graph_n] = { [graph_cpuload] = { _("CPU Load"), VIEW_CPULOAD_KEY, "cpuload", cpuload_n, GetLoad }, @@ -361,17 +360,18 @@ multiload_create_graphs(MultiloadApplet *ma) [graph_diskload] = { _("Disk Load"), VIEW_DISKLOAD_KEY, "diskload", diskload_n, GetDiskLoad } }; - gint speed, size; - guint net_threshold1; - guint net_threshold2; - guint net_threshold3; + guint size; + guint speed; + guint64 net_threshold1; + guint64 net_threshold2; + guint64 net_threshold3; gint i; - speed = g_settings_get_int (ma->settings, "speed"); - size = g_settings_get_int (ma->settings, "size"); - net_threshold1 = CLAMP (g_settings_get_uint (ma->settings, "netthreshold1"), MIN_NET_THRESHOLD1, MAX_NET_THRESHOLD1); - net_threshold2 = CLAMP (g_settings_get_uint (ma->settings, "netthreshold2"), MIN_NET_THRESHOLD2, MAX_NET_THRESHOLD2); - net_threshold3 = CLAMP (g_settings_get_uint (ma->settings, "netthreshold3"), MIN_NET_THRESHOLD3, MAX_NET_THRESHOLD3); + speed = CLAMP (g_settings_get_uint (ma->settings, REFRESH_RATE_KEY), REFRESH_RATE_MIN, REFRESH_RATE_MAX); + size = CLAMP (g_settings_get_uint (ma->settings, GRAPH_SIZE_KEY), GRAPH_SIZE_MIN, GRAPH_SIZE_MAX); + net_threshold1 = CLAMP (g_settings_get_uint64 (ma->settings, KEY_NET_THRESHOLD1), MIN_NET_THRESHOLD1, MAX_NET_THRESHOLD1); + net_threshold2 = CLAMP (g_settings_get_uint64 (ma->settings, KEY_NET_THRESHOLD2), MIN_NET_THRESHOLD2, MAX_NET_THRESHOLD2); + net_threshold3 = CLAMP (g_settings_get_uint64 (ma->settings, KEY_NET_THRESHOLD3), MIN_NET_THRESHOLD3, MAX_NET_THRESHOLD3); if (net_threshold1 >= net_threshold2) { net_threshold1 = net_threshold2 - 1; @@ -380,8 +380,6 @@ multiload_create_graphs(MultiloadApplet *ma) { net_threshold3 = net_threshold2 + 1; } - speed = MAX (speed, 50); - size = CLAMP (size, 10, 400); for (i = 0; i < graph_n; i++) { @@ -412,7 +410,7 @@ multiload_create_graphs(MultiloadApplet *ma) void multiload_applet_refresh(MultiloadApplet *ma) { - gint i; + guint i; MatePanelAppletOrient orientation; /* stop and free the old graphs */ @@ -484,7 +482,7 @@ multiload_applet_new(MatePanelApplet *applet, const gchar *iid, gpointer data) MultiloadApplet *ma; GSettings *lockdown_settings; GtkActionGroup *action_group; - gchar *ui_path; + AtkObject *atk_obj; context = gtk_widget_get_style_context (GTK_WIDGET (applet)); gtk_style_context_add_class (context, "multiload-applet"); @@ -497,10 +495,11 @@ multiload_applet_new(MatePanelApplet *applet, const gchar *iid, gpointer data) ma->prop_dialog = NULL; ma->last_clicked = 0; +#ifndef ENABLE_IN_PROCESS g_set_application_name (_("System Monitor")); +#endif gtk_window_set_default_icon_name ("utilities-system-monitor"); - mate_panel_applet_set_background_widget (applet, GTK_WIDGET(applet)); ma->settings = mate_panel_applet_settings_new (applet, "org.mate.panel.applet.multiload"); mate_panel_applet_set_flags (applet, MATE_PANEL_APPLET_EXPAND_MINOR); @@ -511,10 +510,9 @@ multiload_applet_new(MatePanelApplet *applet, const gchar *iid, gpointer data) multiload_menu_actions, G_N_ELEMENTS (multiload_menu_actions), ma); - ui_path = g_build_filename (MULTILOAD_MENU_UI_DIR, "multiload-applet-menu.xml", NULL); - mate_panel_applet_setup_menu_from_file (applet, ui_path, action_group); - g_free (ui_path); - + mate_panel_applet_setup_menu_from_resource (applet, + MULTILOAD_RESOURCE_PATH "multiload-applet-menu.xml", + action_group); if (mate_panel_applet_get_locked_down (applet)) { GtkAction *action; @@ -537,16 +535,26 @@ multiload_applet_new(MatePanelApplet *applet, const gchar *iid, gpointer data) g_object_unref (action_group); - g_signal_connect(G_OBJECT(applet), "change_size", - G_CALLBACK(multiload_change_size_cb), ma); - g_signal_connect(G_OBJECT(applet), "change_orient", - G_CALLBACK(multiload_change_orient_cb), ma); - g_signal_connect(G_OBJECT(applet), "destroy", - G_CALLBACK(multiload_destroy_cb), ma); - g_signal_connect(G_OBJECT(applet), "button_press_event", - G_CALLBACK(multiload_button_press_event_cb), ma); - g_signal_connect(G_OBJECT(applet), "key_press_event", - G_CALLBACK(multiload_key_press_event_cb), ma); + g_signal_connect (applet, "change-size", + G_CALLBACK (multiload_change_size_cb), ma); + g_signal_connect (applet, "change-orient", + G_CALLBACK (multiload_change_orient_cb), ma); + g_signal_connect (applet, "destroy", + G_CALLBACK (multiload_destroy_cb), ma); + g_signal_connect (applet, "button-press-event", + G_CALLBACK (multiload_button_press_event_cb), ma); + g_signal_connect (applet, "key-press-event", + G_CALLBACK (multiload_key_press_event_cb), ma); + + atk_obj = gtk_widget_get_accessible (GTK_WIDGET (applet)); + + if (GTK_IS_ACCESSIBLE (atk_obj)) { + atk_object_set_name (atk_obj, _("System Monitor")); + atk_object_set_description (atk_obj, + _("A system load monitor capable of displaying graphs " + "for CPU, ram, and swap space use, plus network " + "traffic.")); + } multiload_applet_refresh (ma); @@ -569,8 +577,8 @@ multiload_factory (MatePanelApplet *applet, return retval; } -MATE_PANEL_APPLET_OUT_PROCESS_FACTORY ("MultiLoadAppletFactory", - PANEL_TYPE_APPLET, - "multiload", - multiload_factory, - NULL) +PANEL_APPLET_FACTORY ("MultiLoadAppletFactory", + PANEL_TYPE_APPLET, + "multiload", + multiload_factory, + NULL) diff --git a/multiload/netspeed.c b/multiload/src/netspeed.c index 3e889c8f..a61ce04b 100644 --- a/multiload/netspeed.c +++ b/multiload/src/netspeed.c @@ -1,6 +1,5 @@ #include <config.h> #include <glib.h> -#include <time.h> #include "netspeed.h" @@ -9,13 +8,14 @@ enum { N_STATES = 4 }; struct _NetSpeed { LoadGraph *graph; - gulong states[N_STATES]; + guint64 states[N_STATES]; size_t cur; }; -NetSpeed* netspeed_new(LoadGraph *g) +NetSpeed* +netspeed_new (LoadGraph *g) { - NetSpeed *ns = g_new0(NetSpeed, 1); + NetSpeed *ns = g_new0 (NetSpeed, 1); ns->graph = g; return ns; } @@ -25,31 +25,22 @@ void netspeed_delete(NetSpeed *ns) g_free(ns); } -void netspeed_add(NetSpeed *ns, gulong tx) +void +netspeed_add (NetSpeed *ns, + guint64 tx) { ns->cur = (ns->cur + 1) % N_STATES; ns->states[ns->cur] = tx; } -/* Something very similar to g_format_size() but for rates. - * This should give the same display as in g-s-m */ -static char* -format_rate_for_display(guint rate) +char* +netspeed_get (NetSpeed *ns) { - char *bytes; - char *text; - - bytes = g_format_size (rate); - text = g_strdup_printf (_("%s/s"), bytes); - g_free (bytes); - - return text; -} - -char* netspeed_get(NetSpeed *ns) -{ - gulong older, newer; - guint rate; + guint64 older; + guint64 newer; + guint64 rate; + char *bytes; + char *text; newer = ns->states[ns->cur]; older = ns->states[(ns->cur + 1) % N_STATES]; @@ -65,6 +56,9 @@ char* netspeed_get(NetSpeed *ns) few seconds. */ rate = 0; - return format_rate_for_display(rate); -} + bytes = g_format_size (rate); + text = g_strdup_printf (_("%s/s"), bytes); + g_free (bytes); + return text; +} diff --git a/multiload/netspeed.h b/multiload/src/netspeed.h index 5bc19cf1..55a2ff75 100644 --- a/multiload/netspeed.h +++ b/multiload/src/netspeed.h @@ -9,7 +9,7 @@ typedef struct _NetSpeed NetSpeed; NetSpeed* netspeed_new(LoadGraph *graph); void netspeed_delete(NetSpeed *ns); -void netspeed_add(NetSpeed *ns, gulong tx); +void netspeed_add(NetSpeed *ns, guint64 tx); char* netspeed_get(NetSpeed *ns); #endif /* H_MULTILOAD_NETSPEED_ */ diff --git a/multiload/src/properties.c b/multiload/src/properties.c new file mode 100644 index 00000000..e776b7b8 --- /dev/null +++ b/multiload/src/properties.c @@ -0,0 +1,686 @@ +/* MATE cpuload/memload panel applet + * (C) 2002 The Free Software Foundation + * + * Authors: + * Todd Kulesza + * + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <string.h> + +#include <gtk/gtk.h> + +#include <gio/gio.h> +#include <mate-panel-applet.h> +#include <mate-panel-applet-gsettings.h> + +#include "global.h" + +#define NEVER_SENSITIVE "never_sensitive" + +/* set sensitive and setup NEVER_SENSITIVE appropriately */ +static void +hard_set_sensitive (GtkWidget *w, gboolean sensitivity) +{ + gtk_widget_set_sensitive (w, sensitivity); + g_object_set_data (G_OBJECT (w), NEVER_SENSITIVE, + GINT_TO_POINTER ( ! sensitivity)); +} + +/* set sensitive, but always insensitive if NEVER_SENSITIVE is set */ +static void +soft_set_sensitive (GtkWidget *w, gboolean sensitivity) +{ + if (g_object_get_data (G_OBJECT (w), NEVER_SENSITIVE)) + gtk_widget_set_sensitive (w, FALSE); + else + gtk_widget_set_sensitive (w, sensitivity); +} + +static void +properties_set_insensitive(MultiloadApplet *ma) +{ + guint total_graphs = 0; + guint last_graph = 0; + guint i; + + for (i = 0; i < graph_n; i++) + if (ma->graphs[i]->visible) + { + last_graph = i; + total_graphs++; + } + + if (total_graphs < 2) + soft_set_sensitive (ma->check_boxes[last_graph], FALSE); +} + +static void +on_properties_dialog_response (GtkWidget *widget, + gint arg, + MultiloadApplet *ma) +{ + GError *error = NULL; + + switch (arg) { + case GTK_RESPONSE_HELP: + + gtk_show_uri_on_window (NULL, + "help:mate-multiload/multiload-prefs", + gtk_get_current_event_time (), + &error); + + if (error) { /* FIXME: the user needs to see this */ + g_warning ("help error: %s\n", error->message); + g_error_free (error); + } + break; + + case GTK_RESPONSE_CLOSE: + default: + gtk_widget_destroy (widget); + ma->prop_dialog = NULL; + } +} + +static void +on_speed_spin_button_value_changed (GtkSpinButton *spin_button, + gpointer user_data) +{ + MultiloadApplet *ma = user_data; + gint value; + guint i; + + value = gtk_spin_button_get_value_as_int (spin_button); + g_settings_set_uint (ma->settings, REFRESH_RATE_KEY, (guint) value); + for (i = 0; i < graph_n; i++) { + load_graph_stop (ma->graphs[i]); + ma->graphs[i]->speed = (guint) value; + if (ma->graphs[i]->visible) + load_graph_start (ma->graphs[i]); + } +} + +static void +on_graph_size_spin_button_value_changed (GtkSpinButton *spin_button, + gpointer user_data) +{ + MultiloadApplet *ma = user_data; + gint value; + guint i; + + value = gtk_spin_button_get_value_as_int (spin_button); + g_settings_set_uint (ma->settings, GRAPH_SIZE_KEY, (guint) value); + for (i = 0; i < graph_n; i++) { + ma->graphs[i]->size = (guint) value; + if (ma->graphs[i]->orient) { + gtk_widget_set_size_request (ma->graphs[i]->main_widget, + (gint) ma->graphs[i]->pixel_size, + (gint) ma->graphs[i]->size); + } else { + gtk_widget_set_size_request (ma->graphs[i]->main_widget, + (gint) ma->graphs[i]->size, + (gint) ma->graphs[i]->pixel_size); + } + } +} + +static void +on_net_threshold1_spin_button_value_changed (GtkSpinButton *spin_button, + gpointer user_data) +{ + MultiloadApplet *ma = user_data; + gdouble temp; + + temp = gtk_spin_button_get_value (spin_button); + ma->net_threshold1 = (guint64) temp; + if (ma->net_threshold1 >= ma->net_threshold2) { + ma->net_threshold1 = ma->net_threshold2 - 1; + gtk_spin_button_set_value (spin_button, (gdouble) ma->net_threshold1); + } + g_settings_set_uint64 (ma->settings, KEY_NET_THRESHOLD1, ma->net_threshold1); +} + +static void +on_net_threshold2_spin_button_value_changed (GtkSpinButton *spin_button, + gpointer user_data) +{ + MultiloadApplet *ma = user_data; + gdouble temp; + + temp = gtk_spin_button_get_value (spin_button); + ma->net_threshold2 = (guint64) temp; + if (ma->net_threshold2 >= ma->net_threshold3) { + ma->net_threshold2 = ma->net_threshold3 - 1; + gtk_spin_button_set_value (spin_button, (gdouble) ma->net_threshold2); + } else if (ma->net_threshold2 <= ma->net_threshold1) { + ma->net_threshold2 = ma->net_threshold1 + 1; + gtk_spin_button_set_value (spin_button, (gdouble) ma->net_threshold2); + } + g_settings_set_uint64 (ma->settings, KEY_NET_THRESHOLD2, ma->net_threshold2); +} + +static void +on_net_threshold3_spin_button_value_changed (GtkSpinButton *spin_button, + gpointer user_data) +{ + MultiloadApplet *ma = user_data; + gdouble temp; + + temp = gtk_spin_button_get_value (spin_button); + ma->net_threshold3 = (guint64) temp; + if (ma->net_threshold3 <= ma->net_threshold2) { + ma->net_threshold3 = ma->net_threshold2 + 1; + gtk_spin_button_set_value (spin_button, (gdouble) ma->net_threshold3); + } + g_settings_set_uint64 (ma->settings, KEY_NET_THRESHOLD3, ma->net_threshold3); +} + +static void +color_button_set (GtkColorChooser *button, + GSettings *settings, + const char *key, + GdkRGBA *color) +{ + gchar *color_string; + + gtk_color_chooser_get_rgba (button, color); + color_string = gdk_rgba_to_string (color); + g_settings_set_string (settings, key, color_string); + g_free (color_string); +} + +static void +on_cpuload_usr_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_CPULOAD_USR_COLOR, + &(ma->graphs[graph_cpuload]->colors[cpuload_usr])); +} + +static void +on_cpuload_sys_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_CPULOAD_SYS_COLOR, + &(ma->graphs[graph_cpuload]->colors[cpuload_sys])); +} + +static void +on_cpuload_nice_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_CPULOAD_NICE_COLOR, + &(ma->graphs[graph_cpuload]->colors[cpuload_nice])); +} + +static void +on_cpuload_iowait_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_CPULOAD_IOWAIT_COLOR, + &(ma->graphs[graph_cpuload]->colors[cpuload_iowait])); +} + +static void +on_cpuload_free_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_CPULOAD_IDLE_COLOR, + &(ma->graphs[graph_cpuload]->colors[cpuload_free])); +} + +static void +on_memload_user_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_MEMLOAD_USER_COLOR, + &(ma->graphs[graph_memload]->colors[memload_user])); +} + +static void +on_memload_shared_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_MEMLOAD_SHARED_COLOR, + &(ma->graphs[graph_memload]->colors[memload_shared])); +} + +static void +on_memload_buffer_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_MEMLOAD_BUFFER_COLOR, + &(ma->graphs[graph_memload]->colors[memload_buffer])); +} + +static void +on_memload_cached_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_MEMLOAD_CACHED_COLOR, + &(ma->graphs[graph_memload]->colors[memload_cached])); +} + +static void +on_memload_free_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_MEMLOAD_FREE_COLOR, + &(ma->graphs[graph_memload]->colors[memload_free])); +} + +static void +on_netload2_in_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_IN_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_in])); +} + +static void +on_netload2_out_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_OUT_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_out])); +} + +static void +on_netload2_loopback_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_LOOPBACK_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_loopback])); +} + +static void +on_netload2_background_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_BACKGROUND_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_background])); +} + +static void +on_netload2_gridline_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_GRIDLINE_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_gridline])); +} + +static void +on_netload2_indicator_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_NETLOAD2_INDICATOR_COLOR, + &(ma->graphs[graph_netload2]->colors[netload2_indicator])); +} + +static void +on_swapload_used_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_SWAPLOAD_USED_COLOR, + &(ma->graphs[graph_swapload]->colors[swapload_used])); +} + +static void +on_swapload_free_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_SWAPLOAD_FREE_COLOR, + &(ma->graphs[graph_swapload]->colors[swapload_free])); +} + +static void +on_loadavg_average_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_LOADAVG_AVERAGE_COLOR, + &(ma->graphs[graph_loadavg]->colors[loadavg_average])); +} + +static void +on_loadavg_background_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_LOADAVG_BACKGROUND_COLOR, + &(ma->graphs[graph_loadavg]->colors[loadavg_background])); +} + +static void +on_loadavg_gridline_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_LOADAVG_GRIDLINE_COLOR, + &(ma->graphs[graph_loadavg]->colors[loadavg_gridline])); +} + +static void +on_diskload_read_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_DISKLOAD_READ_COLOR, + &(ma->graphs[graph_diskload]->colors[diskload_read])); +} + +static void +on_diskload_write_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_DISKLOAD_WRITE_COLOR, + &(ma->graphs[graph_diskload]->colors[diskload_write])); +} + +static void +on_diskload_free_color_button_color_set (GtkColorButton *button, + MultiloadApplet *ma) +{ + color_button_set (GTK_COLOR_CHOOSER (button), + ma->settings, KEY_DISKLOAD_FREE_COLOR, + &(ma->graphs[graph_diskload]->colors[diskload_free])); +} + +static void +graph_set_active (MultiloadApplet *ma, + LoadGraph *graph, + gboolean active) +{ + graph->visible = active; + if (active) { + guint i; + + for (i = 0; i < graph_n; i++) + soft_set_sensitive(ma->check_boxes[i], TRUE); + gtk_widget_show_all (graph->main_widget); + load_graph_start (graph); + } else { + load_graph_stop (graph); + gtk_widget_hide (graph->main_widget); + properties_set_insensitive (ma); + } +} + +#define GRAPH_ACTIVE_SET(x) graph_set_active (ma, ma->graphs[(x)], \ + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox))) + +static void +on_graph_cpuload_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_cpuload); +} + +static void +on_graph_memload_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_memload); +} + +static void +on_graph_netload2_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_netload2); +} + +static void +on_graph_swapload_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_swapload); +} + +static void +on_graph_loadavg_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_loadavg); +} + +static void +on_graph_diskload_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + GRAPH_ACTIVE_SET (graph_diskload); +} + +/* save the checkbox option to gsettings and apply it on the applet */ +static void +on_nvme_checkbox_toggled (GtkCheckButton *checkbox, + MultiloadApplet *ma) +{ + ma->nvme_diskstats = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox)); +} + +static void +read_spin_uint_button (GtkWidget *widget, + GSettings *settings, + const char *key, + guint min, + guint max) +{ + guint value; + + value = CLAMP (g_settings_get_uint (settings, key), min, max); + gtk_spin_button_set_value (GTK_SPIN_BUTTON (widget), (gdouble) value); + if (!g_settings_is_writable (settings, key)) + hard_set_sensitive (widget, FALSE); +} + +static void +read_spin_uint64_button (GtkWidget *widget, + GSettings *settings, + const char *key, + guint min, + guint max) +{ + guint64 value; + + value = CLAMP (g_settings_get_uint64 (settings, key), min, max); + gtk_spin_button_set_value (GTK_SPIN_BUTTON (widget), (gdouble) value); + + if (!g_settings_is_writable (settings, key)) + hard_set_sensitive (widget, FALSE); +} + +static void +read_color_button (GtkWidget *widget, + GSettings *settings, + const char *key) +{ + GdkRGBA color; + gchar *color_string; + + color_string = g_settings_get_string (settings, key); + if (*color_string != '\0') { + gdk_rgba_parse (&color, color_string); + } else { + gdk_rgba_parse (&color, "#000000"); + } + g_free (color_string); + gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (widget), &color); + + if (!g_settings_is_writable (settings, key)) + hard_set_sensitive (widget, FALSE); +} + +/* show properties dialog */ +void +multiload_properties_cb (GtkAction *action, + MultiloadApplet *ma) +{ + GtkBuilder *builder; + GtkWidget *dialog = NULL; + GtkWidget *graph_size_spin_button_label; + const char *graph_size_spin_button_label_txt; + MatePanelAppletOrient orient; + + if (ma->prop_dialog) { + dialog = ma->prop_dialog; + + gtk_window_set_screen (GTK_WINDOW (dialog), + gtk_widget_get_screen (GTK_WIDGET (ma->applet))); + + gtk_notebook_set_current_page (GTK_NOTEBOOK (ma->notebook), + ma->last_clicked); + gtk_window_present (GTK_WINDOW (dialog)); + return; + } + + builder = gtk_builder_new_from_resource (MULTILOAD_RESOURCE_PATH "properties.ui"); + gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); + + #define GET_WIDGET(x) (GTK_WIDGET (gtk_builder_get_object (builder, (x)))) + + ma->prop_dialog = GET_WIDGET ("properties_dialog"); + + read_color_button (GET_WIDGET ("cpuload_free_color_button"), ma->settings, KEY_CPULOAD_IDLE_COLOR); + read_color_button (GET_WIDGET ("cpuload_iowait_color_button"), ma->settings, KEY_CPULOAD_IOWAIT_COLOR); + read_color_button (GET_WIDGET ("cpuload_nice_color_button"), ma->settings, KEY_CPULOAD_NICE_COLOR); + read_color_button (GET_WIDGET ("cpuload_sys_color_button"), ma->settings, KEY_CPULOAD_SYS_COLOR); + read_color_button (GET_WIDGET ("cpuload_usr_color_button"), ma->settings, KEY_CPULOAD_USR_COLOR); + read_color_button (GET_WIDGET ("diskload_free_color_button"), ma->settings, KEY_DISKLOAD_FREE_COLOR); + read_color_button (GET_WIDGET ("diskload_read_color_button"), ma->settings, KEY_DISKLOAD_READ_COLOR); + read_color_button (GET_WIDGET ("diskload_write_color_button"), ma->settings, KEY_DISKLOAD_WRITE_COLOR); + read_color_button (GET_WIDGET ("loadavg_average_color_button"), ma->settings, KEY_LOADAVG_AVERAGE_COLOR); + read_color_button (GET_WIDGET ("loadavg_background_color_button"), ma->settings, KEY_LOADAVG_BACKGROUND_COLOR); + read_color_button (GET_WIDGET ("loadavg_gridline_color_button"), ma->settings, KEY_LOADAVG_GRIDLINE_COLOR); + read_color_button (GET_WIDGET ("memload_buffer_color_button"), ma->settings, KEY_MEMLOAD_BUFFER_COLOR); + read_color_button (GET_WIDGET ("memload_cached_color_button"), ma->settings, KEY_MEMLOAD_CACHED_COLOR); + read_color_button (GET_WIDGET ("memload_free_color_button"), ma->settings, KEY_MEMLOAD_FREE_COLOR); + read_color_button (GET_WIDGET ("memload_shared_color_button"), ma->settings, KEY_MEMLOAD_SHARED_COLOR); + read_color_button (GET_WIDGET ("memload_user_color_button"), ma->settings, KEY_MEMLOAD_USER_COLOR); + read_color_button (GET_WIDGET ("netload2_background_color_button"), ma->settings, KEY_NETLOAD2_BACKGROUND_COLOR); + read_color_button (GET_WIDGET ("netload2_gridline_color_button"), ma->settings, KEY_NETLOAD2_GRIDLINE_COLOR); + read_color_button (GET_WIDGET ("netload2_in_color_button"), ma->settings, KEY_NETLOAD2_IN_COLOR); + read_color_button (GET_WIDGET ("netload2_indicator_color_button"), ma->settings, KEY_NETLOAD2_INDICATOR_COLOR); + read_color_button (GET_WIDGET ("netload2_loopback_color_button"), ma->settings, KEY_NETLOAD2_LOOPBACK_COLOR); + read_color_button (GET_WIDGET ("netload2_out_color_button"), ma->settings, KEY_NETLOAD2_OUT_COLOR); + read_color_button (GET_WIDGET ("swapload_free_color_button"), ma->settings, KEY_SWAPLOAD_FREE_COLOR); + read_color_button (GET_WIDGET ("swapload_used_color_button"), ma->settings, KEY_SWAPLOAD_USED_COLOR); + + graph_size_spin_button_label = GET_WIDGET ("graph_size_spin_button_label"); + orient = mate_panel_applet_get_orient(ma->applet); + switch (orient) { + case MATE_PANEL_APPLET_ORIENT_UP: + case MATE_PANEL_APPLET_ORIENT_DOWN: + graph_size_spin_button_label_txt = _("System m_onitor width:"); + break; + default: + graph_size_spin_button_label_txt = _("System m_onitor height:"); + } + gtk_label_set_text_with_mnemonic (GTK_LABEL (graph_size_spin_button_label), graph_size_spin_button_label_txt); + + read_spin_uint_button (GET_WIDGET ("graph_size_spin_button"), ma->settings, GRAPH_SIZE_KEY, GRAPH_SIZE_MIN, GRAPH_SIZE_MAX); + read_spin_uint_button (GET_WIDGET ("speed_spin_button"), ma->settings, REFRESH_RATE_KEY, REFRESH_RATE_MIN, REFRESH_RATE_MAX); + + read_spin_uint64_button (GET_WIDGET ("net_threshold1_spin_button"), ma->settings, KEY_NET_THRESHOLD1, MIN_NET_THRESHOLD1, MAX_NET_THRESHOLD1); + read_spin_uint64_button (GET_WIDGET ("net_threshold2_spin_button"), ma->settings, KEY_NET_THRESHOLD2, MIN_NET_THRESHOLD2, MAX_NET_THRESHOLD2); + read_spin_uint64_button (GET_WIDGET ("net_threshold3_spin_button"), ma->settings, KEY_NET_THRESHOLD3, MIN_NET_THRESHOLD3, MAX_NET_THRESHOLD3); + + ma->notebook = GET_WIDGET ("notebook"); + + ma->check_boxes[graph_cpuload] = GET_WIDGET ("graph_cpuload_checkbox"); + ma->check_boxes[graph_memload] = GET_WIDGET ("graph_memload_checkbox"); + ma->check_boxes[graph_netload2] = GET_WIDGET ("graph_netload2_checkbox"); + ma->check_boxes[graph_swapload] = GET_WIDGET ("graph_swapload_checkbox"); + ma->check_boxes[graph_loadavg] = GET_WIDGET ("graph_loadavg_checkbox"); + ma->check_boxes[graph_diskload] = GET_WIDGET ("graph_diskload_checkbox"); + + g_settings_bind (ma->settings, VIEW_CPULOAD_KEY, ma->check_boxes[graph_cpuload], "active", G_SETTINGS_BIND_DEFAULT); + g_settings_bind (ma->settings, VIEW_MEMLOAD_KEY, ma->check_boxes[graph_memload], "active", G_SETTINGS_BIND_DEFAULT); + g_settings_bind (ma->settings, VIEW_NETLOAD_KEY, ma->check_boxes[graph_netload2], "active", G_SETTINGS_BIND_DEFAULT); + g_settings_bind (ma->settings, VIEW_SWAPLOAD_KEY, ma->check_boxes[graph_swapload], "active", G_SETTINGS_BIND_DEFAULT); + g_settings_bind (ma->settings, VIEW_LOADAVG_KEY, ma->check_boxes[graph_loadavg], "active", G_SETTINGS_BIND_DEFAULT); + g_settings_bind (ma->settings, VIEW_DISKLOAD_KEY, ma->check_boxes[graph_diskload], "active", G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (ma->settings, DISKLOAD_NVME_KEY, GET_WIDGET ("nvme_checkbox"), "active", G_SETTINGS_BIND_DEFAULT); + + #undef GET_WIDGET + + properties_set_insensitive (ma); + + gtk_builder_add_callback_symbols (builder, + "on_cpuload_usr_color_button_color_set", G_CALLBACK (on_cpuload_usr_color_button_color_set), + "on_cpuload_sys_color_button_color_set", G_CALLBACK (on_cpuload_sys_color_button_color_set), + "on_cpuload_nice_color_button_color_set", G_CALLBACK (on_cpuload_nice_color_button_color_set), + "on_cpuload_iowait_color_button_color_set", G_CALLBACK (on_cpuload_iowait_color_button_color_set), + "on_cpuload_free_color_button_color_set", G_CALLBACK (on_cpuload_free_color_button_color_set), + "on_memload_user_color_button_color_set", G_CALLBACK (on_memload_user_color_button_color_set), + "on_memload_shared_color_button_color_set", G_CALLBACK (on_memload_shared_color_button_color_set), + "on_memload_buffer_color_button_color_set", G_CALLBACK (on_memload_buffer_color_button_color_set), + "on_memload_cached_color_button_color_set", G_CALLBACK (on_memload_cached_color_button_color_set), + "on_memload_free_color_button_color_set", G_CALLBACK (on_memload_free_color_button_color_set), + "on_netload2_in_color_button_color_set", G_CALLBACK (on_netload2_in_color_button_color_set), + "on_netload2_out_color_button_color_set", G_CALLBACK (on_netload2_out_color_button_color_set), + "on_netload2_loopback_color_button_color_set", G_CALLBACK (on_netload2_loopback_color_button_color_set), + "on_netload2_background_color_button_color_set", G_CALLBACK (on_netload2_background_color_button_color_set), + "on_netload2_gridline_color_button_color_set", G_CALLBACK (on_netload2_gridline_color_button_color_set), + "on_netload2_indicator_color_button_color_set", G_CALLBACK (on_netload2_indicator_color_button_color_set), + "on_swapload_used_color_button_color_set", G_CALLBACK (on_swapload_used_color_button_color_set), + "on_swapload_free_color_button_color_set", G_CALLBACK (on_swapload_free_color_button_color_set), + "on_loadavg_average_color_button_color_set", G_CALLBACK (on_loadavg_average_color_button_color_set), + "on_loadavg_background_color_button_color_set", G_CALLBACK (on_loadavg_background_color_button_color_set), + "on_loadavg_gridline_color_button_color_set", G_CALLBACK (on_loadavg_gridline_color_button_color_set), + "on_diskload_read_color_button_color_set", G_CALLBACK (on_diskload_read_color_button_color_set), + "on_diskload_write_color_button_color_set", G_CALLBACK (on_diskload_write_color_button_color_set), + "on_diskload_free_color_button_color_set", G_CALLBACK (on_diskload_free_color_button_color_set), + "on_properties_dialog_response", G_CALLBACK (on_properties_dialog_response), + "on_graph_cpuload_checkbox_toggled", G_CALLBACK (on_graph_cpuload_checkbox_toggled), + "on_graph_memload_checkbox_toggled", G_CALLBACK (on_graph_memload_checkbox_toggled), + "on_graph_netload2_checkbox_toggled", G_CALLBACK (on_graph_netload2_checkbox_toggled), + "on_graph_swapload_checkbox_toggled", G_CALLBACK (on_graph_swapload_checkbox_toggled), + "on_graph_loadavg_checkbox_toggled", G_CALLBACK (on_graph_loadavg_checkbox_toggled), + "on_graph_diskload_checkbox_toggled", G_CALLBACK (on_graph_diskload_checkbox_toggled), + "on_nvme_checkbox_toggled", G_CALLBACK (on_nvme_checkbox_toggled), + "on_graph_size_spin_button_value_changed", G_CALLBACK (on_graph_size_spin_button_value_changed), + "on_speed_spin_button_value_changed", G_CALLBACK (on_speed_spin_button_value_changed), + "on_net_threshold1_spin_button_value_changed", G_CALLBACK (on_net_threshold1_spin_button_value_changed), + "on_net_threshold2_spin_button_value_changed", G_CALLBACK (on_net_threshold2_spin_button_value_changed), + "on_net_threshold3_spin_button_value_changed", G_CALLBACK (on_net_threshold3_spin_button_value_changed), + NULL); + + gtk_builder_connect_signals (builder, ma); + + g_object_unref (builder); + + gtk_window_set_screen (GTK_WINDOW (ma->prop_dialog), + gtk_widget_get_screen (GTK_WIDGET (ma->applet))); + + gtk_widget_show_all (ma->prop_dialog); + + gtk_notebook_set_current_page (GTK_NOTEBOOK (ma->notebook), + ma->last_clicked); +} |