[Xfce4-commits] [panel-plugins/xfce4-sensors-plugin] 01/01: Fixed bugreport 13334 that compiling with -Wl,--no-undefined would not work; hence library version increased!

noreply at xfce.org noreply at xfce.org
Sun Feb 5 23:25:39 CET 2017


This is an automated email from the git hooks/post-receive script.

timystery pushed a commit to branch master
in repository panel-plugins/xfce4-sensors-plugin.

commit 15736f7ad62fccf0dc93bfd78f3fca0400ef2480
Author: Fabian <timystery at arcor.de>
Date:   Sun Feb 5 23:16:16 2017 +0100

    Fixed bugreport 13334 that compiling with -Wl,--no-undefined would not work; hence library version increased!
---
 configure.ac.in                    |   4 +-
 include/sensors-interface-common.h |  33 ++--
 panel-plugin/sensors-plugin.c      |  27 ++-
 panel-plugin/sensors-plugin.h      |  23 +++
 po/ar.po                           |  10 +-
 po/ast.po                          |  10 +-
 po/bg.po                           |  91 ++++++---
 po/ca.po                           |  10 +-
 po/cs.po                           |  10 +-
 po/da.po                           |  10 +-
 po/de.po                           |  10 +-
 po/el.po                           |  10 +-
 po/en_AU.po                        |  10 +-
 po/en_GB.po                        |  10 +-
 po/es.po                           |  10 +-
 po/eu.po                           |  10 +-
 po/fi.po                           |  10 +-
 po/fr.po                           |  94 ++++++---
 po/gl.po                           |  10 +-
 po/he.po                           |  10 +-
 po/hr.po                           |  10 +-
 po/hu.po                           |  10 +-
 po/id.po                           |  10 +-
 po/is.po                           |  10 +-
 po/it.po                           |  10 +-
 po/ja.po                           |  10 +-
 po/ko.po                           |  88 ++++++---
 po/lt.po                           |  10 +-
 po/lv.po                           |  10 +-
 po/ms.po                           |  10 +-
 po/nb.po                           |  10 +-
 po/nl.po                           |  10 +-
 po/oc.po                           |  10 +-
 po/pl.po                           |  10 +-
 po/pt.po                           |  10 +-
 po/pt_BR.po                        |  10 +-
 po/ru.po                           |  90 ++++++---
 po/sk.po                           |  10 +-
 po/sq.po                           |  10 +-
 po/sr.po                           |  10 +-
 po/sv.po                           |  10 +-
 po/th.po                           |  10 +-
 po/tr.po                           |  10 +-
 po/ug.po                           |  10 +-
 po/uk.po                           |  10 +-
 po/ur.po                           |  10 +-
 po/ur_PK.po                        |  10 +-
 po/vi.po                           |  10 +-
 po/xfce4-sensors-plugin.pot        | 385 -------------------------------------
 po/zh_CN.po                        |  10 +-
 po/zh_TW.po                        |  10 +-
 src/callbacks.c                    |  16 +-
 src/callbacks.h                    |  25 ++-
 src/main.c                         |  10 +
 54 files changed, 541 insertions(+), 765 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index b5276e4..9d3c419 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -7,7 +7,7 @@ dnl 2003,2004, 2007 Benedikt Meurer <benny at xfce.org>
 dnl 2007-2011,2014-2016 Fabian Nowak <timystery at arcor.de>
 dnl
 
-m4_define([libxfce4sensors_verinfo], [3:4:2])
+m4_define([libxfce4sensors_verinfo], [3:5:2])
 
 m4_define([xfce4_sensors_version_major], [1])
 m4_define([xfce4_sensors_version_minor], [2])
@@ -271,7 +271,7 @@ if test x"$enable_debug" = x"yes"; then
     AC_DEFINE([DEBUG_TRACE], [1],
         [Set this to 1 to enable full trace debugging.]
     )
-    PLATFORM_CFLAGS="-Wall -Werror $PLATFORM_CFLAGS"
+    PLATFORM_CFLAGS="-Wall -Werror -Wl,--no-undefined $PLATFORM_CFLAGS"
 fi
 
 AC_SUBST([PLATFORM_CFLAGS])
diff --git a/include/sensors-interface-common.h b/include/sensors-interface-common.h
index e8732ec..88cd585 100644
--- a/include/sensors-interface-common.h
+++ b/include/sensors-interface-common.h
@@ -87,35 +87,36 @@ t_sensors_dialog;
 
 /* Extern functions that need to be re-implemented in the sensors-viewer and
  * the panel code. */
-extern void
-adjustment_value_changed  (GtkWidget *widget, t_sensors_dialog *sd); // for update timer box
+void
+(*adjustment_value_changed)  (GtkWidget *widget, t_sensors_dialog *sd); // for update timer box
 
-extern void
-sensor_entry_changed (GtkWidget *widget, t_sensors_dialog *sd);
+void
+(*sensor_entry_changed) (GtkWidget *widget, t_sensors_dialog *sd);
 
-extern void
-list_cell_text_edited (GtkCellRendererText *cellrenderertext,
+void
+(*list_cell_text_edited) (GtkCellRendererText *cellrenderertext,
                       gchar *path_str, gchar *new_text, t_sensors_dialog *sd);
 
-extern void
-list_cell_toggle (GtkCellRendererToggle *cell, gchar *path_str,
+void
+(*list_cell_toggle) (GtkCellRendererToggle *cell, gchar *path_str,
                   t_sensors_dialog *sd);
 
-extern void
-list_cell_color_edited (GtkCellRendererText *cellrenderertext, gchar *path_str,
+void
+(*list_cell_color_edited) (GtkCellRendererText *cellrenderertext, gchar *path_str,
                        gchar *new_color, t_sensors_dialog *sd);
 
-extern void
-minimum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+void
+(*minimum_changed) (GtkCellRendererText *cellrenderertext, gchar *path_str,
                  gchar *new_value, t_sensors_dialog *sd);
 
-extern void
-maximum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+void
+(*maximum_changed) (GtkCellRendererText *cellrenderertext, gchar *path_str,
             gchar *new_value, t_sensors_dialog *sd);
 
-extern void
-temperature_unit_change (GtkWidget *widget, t_sensors_dialog *sd);
+void
+(*temperature_unit_change) (GtkWidget *widget, t_sensors_dialog *sd);
 
+/* internal function */
 void format_sensor_value (t_tempscale scale, t_chipfeature *chipfeature,
                      double sensorFeature, gchar **help);
 
diff --git a/panel-plugin/sensors-plugin.c b/panel-plugin/sensors-plugin.c
index c6e43c3..553e69f 100644
--- a/panel-plugin/sensors-plugin.c
+++ b/panel-plugin/sensors-plugin.c
@@ -1396,7 +1396,7 @@ display_style_changed_tacho (GtkWidget *widget, t_sensors_dialog *sd)
 
 
 void
-sensor_entry_changed (GtkWidget *widget, t_sensors_dialog *sd)
+sensor_entry_changed_ (GtkWidget *widget, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
     t_chip *chip;
@@ -1460,7 +1460,7 @@ lines_size_change (GtkWidget *widget, t_sensors_dialog *sd)
 
 
 void
-temperature_unit_change (GtkWidget *widget, t_sensors_dialog *sd)
+temperature_unit_change_ (GtkWidget *widget, t_sensors_dialog *sd)
 {
     TRACE ("enters temperature_unit_change ");
 
@@ -1477,7 +1477,7 @@ temperature_unit_change (GtkWidget *widget, t_sensors_dialog *sd)
 
 
 void
-adjustment_value_changed (GtkWidget *widget, t_sensors_dialog* sd)
+adjustment_value_changed_ (GtkWidget *widget, t_sensors_dialog* sd)
 {
     TRACE ("enters adjustment_value_changed ");
 
@@ -1553,7 +1553,7 @@ execCommand_toggled (GtkWidget *widget, t_sensors_dialog* sd)
 
 
 void
-minimum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+minimum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
                  gchar *new_value, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -1606,7 +1606,7 @@ minimum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
 
 
 void
-maximum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+maximum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
             gchar *new_value, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -1659,7 +1659,7 @@ maximum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
 
 
 void
-list_cell_color_edited (GtkCellRendererText *cellrenderertext, gchar *path_str,
+list_cell_color_edited_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
                        gchar *new_color, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -1714,7 +1714,7 @@ list_cell_color_edited (GtkCellRendererText *cellrenderertext, gchar *path_str,
 
 
 void
-list_cell_text_edited (GtkCellRendererText *cellrenderertext,
+list_cell_text_edited_ (GtkCellRendererText *cellrenderertext,
                       gchar *path_str, gchar *new_text, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -1766,7 +1766,7 @@ list_cell_text_edited (GtkCellRendererText *cellrenderertext,
 
 
 void
-list_cell_toggle (GtkCellRendererToggle *cell, gchar *path_str,
+list_cell_toggle_ (GtkCellRendererToggle *cell, gchar *path_str,
                   t_sensors_dialog *sd)
 {
     t_chip *chip;
@@ -2470,6 +2470,17 @@ sensors_plugin_construct (XfcePanelPlugin *plugin)
 
     xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
 
+    /* declare callback functions for libxfce4sensors */
+    adjustment_value_changed = &adjustment_value_changed_;
+    sensor_entry_changed = &sensor_entry_changed_;
+    list_cell_text_edited= &list_cell_text_edited_;
+    list_cell_toggle = &list_cell_toggle_;
+    list_cell_color_edited = &list_cell_color_edited_;
+    minimum_changed = &minimum_changed_;
+    maximum_changed = &maximum_changed_;
+    temperature_unit_change = &temperature_unit_change_;
+
+
     ptr_sensorsstruct = create_sensors_control (plugin);
 
     ptr_sensorsstruct->plugin_config_file = xfce_panel_plugin_lookup_rc_file(plugin);
diff --git a/panel-plugin/sensors-plugin.h b/panel-plugin/sensors-plugin.h
index 26c7669..9cac1e0 100644
--- a/panel-plugin/sensors-plugin.h
+++ b/panel-plugin/sensors-plugin.h
@@ -30,4 +30,27 @@
 #define APP_NAME N_("Sensors Plugin")
 
 
+/* Functions for implementing the sensors interface common callback functions */
+
+void adjustment_value_changed_  (GtkWidget *widget, t_sensors_dialog *sd); // for update timer box
+
+void sensor_entry_changed_ (GtkWidget *widget, t_sensors_dialog *sd);
+
+void list_cell_text_edited_ (GtkCellRendererText *cellrenderertext,
+                      gchar *path_str, gchar *new_text, t_sensors_dialog *sd);
+
+void list_cell_toggle_ (GtkCellRendererToggle *cell, gchar *path_str,
+                  t_sensors_dialog *sd);
+
+void list_cell_color_edited_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+                       gchar *new_color, t_sensors_dialog *sd);
+
+void minimum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+                 gchar *new_value, t_sensors_dialog *sd);
+
+void maximum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+            gchar *new_value, t_sensors_dialog *sd);
+
+void temperature_unit_change_ (GtkWidget *widget, t_sensors_dialog *sd);
+
 #endif /* XFCE4_SENSORS_SENSORS_H */
diff --git a/po/ar.po b/po/ar.po
index b129ab1..662c801 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2013-09-15 07:24+0000\n"
 "Last-Translator: mohammad alhargan <malham1 at hotmail.com>\n"
 "Language-Team: Arabic (http://www.transifex.com/projects/p/xfce/language/"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "الأقراص الثابتة"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "مناطق ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<غير معروف>"
 
diff --git a/po/ast.po b/po/ast.po
index 21e4d05..79bbb5c 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-11-24 16:33+0000\n"
 "Last-Translator: Ḷḷumex03 <tornes at opmbx.org>\n"
 "Language-Team: Asturian (http://www.transifex.com/projects/p/xfce-panel-"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discos duros"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zones v%s ACPI"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Desconocíu>"
 
diff --git a/po/bg.po b/po/bg.po
index cc1af8b..a02de71 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Kiril Kirilov <cybercop_montana at abv.bg>, 2015,2017
 # Любомир Василев, 2015
@@ -9,14 +9,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 11:49+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-05 11:50+0000\n"
 "Last-Translator: Kiril Kirilov <cybercop_montana at abv.bg>\n"
-"Language-Team: Bulgarian (http://www.transifex.com/xfce/xfce-panel-plugins/language/bg/)\n"
+"Language-Team: Bulgarian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/bg/)\n"
+"Language: bg\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. initialize value label widget
@@ -38,7 +39,10 @@ msgid ""
 "Sensors Plugin:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Добавка Сензори:\nИзглежда е имало проблем с четенето на показанията на сензорите.\nПравилното поведение не е гарантирано.\n"
+msgstr ""
+"Добавка Сензори:\n"
+"Изглежда е имало проблем с четенето на показанията на сензорите.\n"
+"Правилното поведение не е гарантирано.\n"
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid "UI style:"
@@ -76,8 +80,7 @@ msgstr "Брой на тестовите редове:"
 msgid "F_ont size:"
 msgstr "Размер на шрифт"
 
-#. gtk_widget_set_sensitive(myFontBox,
-#. !sd->sensors->display_values_graphically);
+#. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:2036
 msgid "x-small"
 msgstr "много малък"
@@ -144,7 +147,10 @@ msgid ""
 "You can change a feature's properties such as name, colours, min/max value "
 "by double-clicking the entry, editing the content, and pressing \"Return\" "
 "or selecting a different field."
-msgstr "Можете да промените свойствата на елемента, като име, цветове, мин./макс. стойност чрез двукратно щракване върху елемента, редактиране на съдържанието и натискане на „Return“ или избор на друга област."
+msgstr ""
+"Можете да промените свойствата на елемента, като име, цветове, мин./макс. "
+"стойност чрез двукратно щракване върху елемента, редактиране на съдържанието "
+"и натискане на „Return“ или избор на друга област."
 
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
@@ -155,18 +161,16 @@ msgstr "Можете да промените свойствата на елем
 msgid "Hard disks"
 msgstr "Твърди дискове"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s зони"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Неизвестно>"
 
@@ -185,14 +189,28 @@ msgstr "S.M.A.R.T. температура на твърдият диск"
 #: ../lib/hddtemp.c:571
 #, c-format
 msgid ""
-"\"hddtemp\" was not executed correctly, although it is executable. This is most probably due to the disks requiring root privileges to read their temperatures, and \"hddtemp\" not being setuid root.\n"
+"\"hddtemp\" was not executed correctly, although it is executable. This is "
+"most probably due to the disks requiring root privileges to read their "
+"temperatures, and \"hddtemp\" not being setuid root.\n"
 "\n"
-"An easy but dirty solution is to run \"chmod u+s %s\" as root user and restart this plugin or its panel.\n"
+"An easy but dirty solution is to run \"chmod u+s %s\" as root user and "
+"restart this plugin or its panel.\n"
 "\n"
 "Calling \"%s\" gave the following error:\n"
 "%s\n"
 "with a return value of %d.\n"
-msgstr "„hddtemp“ не е била изпълнена правилно, въпреки че е изпълнима. Това,  най-вероятно се дължи на дисковете, изискващи root привилегии да прочетете техните температури, и „hddtemp“ не е имала нужните права.\n\nЕдин лесно, но рисково решение е да изпълните „chmod u+s %s“  като администратор и да рестартирате тази добавка или нейния панел.\n\nЗаявката  „%s“ произвежда следната грешка:\n%s\nс резултат %d.\n\n"
+msgstr ""
+"„hddtemp“ не е била изпълнена правилно, въпреки че е изпълнима. Това,  най-"
+"вероятно се дължи на дисковете, изискващи root привилегии да прочетете "
+"техните температури, и „hddtemp“ не е имала нужните права.\n"
+"\n"
+"Един лесно, но рисково решение е да изпълните „chmod u+s %s“  като "
+"администратор и да рестартирате тази добавка или нейния панел.\n"
+"\n"
+"Заявката  „%s“ произвежда следната грешка:\n"
+"%s\n"
+"с резултат %d.\n"
+"\n"
 
 #: ../lib/hddtemp.c:587 ../lib/hddtemp.c:611
 msgid "Suppress this message in future"
@@ -203,7 +221,9 @@ msgstr "Блокиране на това съобщение в бъдеще"
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
-msgstr "Възникна грешка при изпълнение на „%s“:\n%s"
+msgstr ""
+"Възникна грешка при изпълнение на „%s“:\n"
+"%s"
 
 #: ../lib/lmsensors.c:95
 msgid "LM Sensors"
@@ -222,7 +242,9 @@ msgstr "Неуспешно зареждане на добавка Сензори
 msgid ""
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed."
-msgstr "Изглежда, че е имало проблем с прочитането на показанията на сензорите.\nПравилната процедура не може да бъде гарантирана."
+msgstr ""
+"Изглежда, че е имало проблем с прочитането на показанията на сензорите.\n"
+"Правилната процедура не може да бъде гарантирана."
 
 #: ../lib/sensors-interface.c:174
 msgid "Sensors t_ype:"
@@ -319,14 +341,23 @@ msgstr "%.0f об/мин"
 msgid ""
 "Xfce4 Sensors %s\n"
 "This program is published under the GPL v2.\n"
-"The license text can be found inside the program's source archive or under /usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
-msgstr "Xfce4 Сензори %s\nТази програма е лицензирана под GPL v2 лиценз.\nТекстът на лиценза може да бъде намерен в изходният код на програмата или в /usr/share/apps/LICENSES/GPL_V2, както и на адрес http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n\n"
+"The license text can be found inside the program's source archive or under /"
+"usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-"
+"licenses/gpl-2.0.txt\n"
+msgstr ""
+"Xfce4 Сензори %s\n"
+"Тази програма е лицензирана под GPL v2 лиценз.\n"
+"Текстът на лиценза може да бъде намерен в изходният код на програмата или в /"
+"usr/share/apps/LICENSES/GPL_V2, както и на адрес http://www.gnu.org/licenses/"
+"old-licenses/gpl-2.0.txt\n"
+"\n"
 
 #: ../src/main.c:70
 #, c-format
 msgid ""
 "Xfce4 Sensors %s\n"
-"Displays information about your hardware sensors, ACPI status, harddisk temperatures and Nvidia GPU's temperature.\n"
+"Displays information about your hardware sensors, ACPI status, harddisk "
+"temperatures and Nvidia GPU's temperature.\n"
 "Synopsis: \n"
 "  xfce4-sensors options\n"
 "where options are one or more of the following:\n"
@@ -335,7 +366,18 @@ msgid ""
 "  -V, --version Print version information.\n"
 "\n"
 "This program is published under the GPL v2.\n"
-msgstr "Xfce4 Сензори %s\nПоказва информация от вашите хардуерни сензори, ACPI състоянието, температурата на твърдият диск и на графичните карти Nvidia.\nРезюме:\nfce4-sensors options\nкъдето опциите са една или няколко от следните:\n-h, --help Показва този помощен диалог.\nl, --license Показва информация за лиценза.\n-V, --version Показва информация за версията.\n\nТази програма е публикувана под GPL v2 лиценз.\n"
+msgstr ""
+"Xfce4 Сензори %s\n"
+"Показва информация от вашите хардуерни сензори, ACPI състоянието, "
+"температурата на твърдият диск и на графичните карти Nvidia.\n"
+"Резюме:\n"
+"fce4-sensors options\n"
+"където опциите са една или няколко от следните:\n"
+"-h, --help Показва този помощен диалог.\n"
+"l, --license Показва информация за лиценза.\n"
+"-V, --version Показва информация за версията.\n"
+"\n"
+"Тази програма е публикувана под GPL v2 лиценз.\n"
 
 #: ../src/main.c:88
 #, c-format
@@ -362,7 +404,10 @@ msgid ""
 "Sensors Viewer:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Преглед на сензорите:\nИзглежда, че е имало проблем с разчитането на показанията на сензора.\nПравилното отчитане не може да се гарантира.\n"
+msgstr ""
+"Преглед на сензорите:\n"
+"Изглежда, че е имало проблем с разчитането на показанията на сензора.\n"
+"Правилното отчитане не може да се гарантира.\n"
 
 #: ../src/xfce4-sensors.desktop.in.h:1
 msgid "Sensor Viewer"
diff --git a/po/ca.po b/po/ca.po
index 3a91a88..3d4ca31 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2016-06-06 00:29+0000\n"
 "Last-Translator: Robert Antoni Buj i Gelonch <rbuj at fedoraproject.org>\n"
 "Language-Team: Catalan (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discs durs"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<desconegut>"
 
diff --git a/po/cs.po b/po/cs.po
index 286c816..2ead1a2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-08-31 21:44+0000\n"
 "Last-Translator: Alois Nešpor <info at aloisnespor.info>\n"
 "Language-Team: Czech (http://www.transifex.com/projects/p/xfce-panel-plugins/"
@@ -160,18 +160,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Pevné disky"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zóny ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Neznámý>"
 
diff --git a/po/da.po b/po/da.po
index 7ad2606..83ab9f8 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-04 11:31+0000\n"
 "Last-Translator: Xfce Bot <transifex at xfce.org>\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Harddiske"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zoner"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Ukendt>"
 
diff --git a/po/de.po b/po/de.po
index ff2d52f..071d900 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-08-08 15:37+0000\n"
 "Last-Translator: Tobias Bannert\n"
 "Language-Team: German (http://www.transifex.com/projects/p/xfce-panel-"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Festplatten"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI-v%s-Zonen"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unbekannt>"
 
diff --git a/po/el.po b/po/el.po
index a7f5b65..a4111ab 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2015-03-19 09:15+0000\n"
 "Last-Translator: Efstathios Iosifidis <iefstathios at gmail.com>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/xfce-panel-plugins/"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Σκληροί δίσκοι"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ζώνες ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Άγνωστο>"
 
diff --git a/po/en_AU.po b/po/en_AU.po
index 310d6c3..ff14a41 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-06-09 08:57+0000\n"
 "Last-Translator: Michael Findlay <keltoiboy at gmail.com>\n"
 "Language-Team: English (Australia) (http://www.transifex.com/projects/p/xfce-"
@@ -160,18 +160,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Hard disks"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
diff --git a/po/en_GB.po b/po/en_GB.po
index f3ccb83..155dd98 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-08-30 17:10+1000\n"
 "Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
 "Language-Team: English/GB\n"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Hard disks"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
diff --git a/po/es.po b/po/es.po
index af03f50..8da35ea 100644
--- a/po/es.po
+++ b/po/es.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-12-26 00:24+0000\n"
 "Last-Translator: Pablo Roberto Francisco Lezaeta Reyes <prflr88 at gmail.com>\n"
 "Language-Team: Spanish (http://www.transifex.com/projects/p/xfce-panel-"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discos duros"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas v%s ACPI"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Desconocido>"
 
diff --git a/po/eu.po b/po/eu.po
index a00bcf2..844ccbf 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-10-21 13:50+0200\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Basque <debian-l10n-eu at debian.lists.org>\n"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Disko gogorrak"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zonaldeak"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Ezezaguna>"
 
diff --git a/po/fi.po b/po/fi.po
index 74311f1..a629fd8 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2013-11-11 21:42+0000\n"
 "Last-Translator: Jiri Grönroos <jiri.gronroos at iki.fi>\n"
 "Language-Team: Finnish (http://www.transifex.com/projects/p/xfce/language/"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Kiintolevyt"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI versio %s vyöhykkeet"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Tuntematon>"
 
diff --git a/po/fr.po b/po/fr.po
index 9a3494b..e340f57 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Fabian Nowak <timystery at arcor.de>, 2005
 # jc1 <jc1.quebecos at gmail.com>, 2013
@@ -13,14 +13,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 11:49+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-05 09:03+0000\n"
 "Last-Translator: Yannick Le Guen <leguen.yannick at gmail.com>\n"
-"Language-Team: French (http://www.transifex.com/xfce/xfce-panel-plugins/language/fr/)\n"
+"Language-Team: French (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/fr/)\n"
+"Language: 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"
 
 #. initialize value label widget
@@ -42,7 +43,13 @@ msgid ""
 "Sensors Plugin:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Greffon Capteurs :\nIl semblerait que la valeur d’un capteur n’ait pas été correctement lue.\nLe résultat de l’opération ne peut être garanti.\n\n\n\n"
+msgstr ""
+"Greffon Capteurs :\n"
+"Il semblerait que la valeur d’un capteur n’ait pas été correctement lue.\n"
+"Le résultat de l’opération ne peut être garanti.\n"
+"\n"
+"\n"
+"\n"
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid "UI style:"
@@ -80,8 +87,7 @@ msgstr "_Nombre de lignes de texte :"
 msgid "F_ont size:"
 msgstr "Taille de la _police :"
 
-#. gtk_widget_set_sensitive(myFontBox,
-#. !sd->sensors->display_values_graphically);
+#. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:2036
 msgid "x-small"
 msgstr "très petite"
@@ -148,7 +154,11 @@ msgid ""
 "You can change a feature's properties such as name, colours, min/max value "
 "by double-clicking the entry, editing the content, and pressing \"Return\" "
 "or selecting a different field."
-msgstr "Vous pouvez modifier les caractéristiques d’une fonctionnalité comme son nom, ses couleurs ou sa valeur min/max. Double-cliquez sur l’entrée, modifiez son contenu et appuyez sur « Entrée » ou sélectionnez un autre champ."
+msgstr ""
+"Vous pouvez modifier les caractéristiques d’une fonctionnalité comme son "
+"nom, ses couleurs ou sa valeur min/max. Double-cliquez sur l’entrée, "
+"modifiez son contenu et appuyez sur « Entrée » ou sélectionnez un autre "
+"champ."
 
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
@@ -159,18 +169,16 @@ msgstr "Vous pouvez modifier les caractéristiques d’une fonctionnalité comme
 msgid "Hard disks"
 msgstr "Disques durs"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zones ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Inconnu>"
 
@@ -189,14 +197,28 @@ msgstr "Températures S.M.A.R.T du disque dur"
 #: ../lib/hddtemp.c:571
 #, c-format
 msgid ""
-"\"hddtemp\" was not executed correctly, although it is executable. This is most probably due to the disks requiring root privileges to read their temperatures, and \"hddtemp\" not being setuid root.\n"
+"\"hddtemp\" was not executed correctly, although it is executable. This is "
+"most probably due to the disks requiring root privileges to read their "
+"temperatures, and \"hddtemp\" not being setuid root.\n"
 "\n"
-"An easy but dirty solution is to run \"chmod u+s %s\" as root user and restart this plugin or its panel.\n"
+"An easy but dirty solution is to run \"chmod u+s %s\" as root user and "
+"restart this plugin or its panel.\n"
 "\n"
 "Calling \"%s\" gave the following error:\n"
 "%s\n"
 "with a return value of %d.\n"
-msgstr "Bien qu’il soit exécutable, « hddtemp » n’a pas été correctement exécuté. Cela provient certainement du fait que les disques exigent des privilèges root, que « hddtemp » ne possède pas, pour accéder à leur température .\n\nUne solution simple, mais peu orthodoxe, consiste à exécuter la commande « chmod u+s %s » en tant que root et relancer le greffon ou son tableau de bord.\n\nAppeler « %s » a donné l’erreur suivante :\n%s\navec une valeur de retour de %d.\n"
+msgstr ""
+"Bien qu’il soit exécutable, « hddtemp » n’a pas été correctement exécuté. "
+"Cela provient certainement du fait que les disques exigent des privilèges "
+"root, que « hddtemp » ne possède pas, pour accéder à leur température .\n"
+"\n"
+"Une solution simple, mais peu orthodoxe, consiste à exécuter la commande « "
+"chmod u+s %s » en tant que root et relancer le greffon ou son tableau de "
+"bord.\n"
+"\n"
+"Appeler « %s » a donné l’erreur suivante :\n"
+"%s\n"
+"avec une valeur de retour de %d.\n"
 
 #: ../lib/hddtemp.c:587 ../lib/hddtemp.c:611
 msgid "Suppress this message in future"
@@ -207,7 +229,9 @@ msgstr "Ne plus afficher ce message"
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
-msgstr "Une erreur s’est produite lors de l’exécution de « %s » :\n%s"
+msgstr ""
+"Une erreur s’est produite lors de l’exécution de « %s » :\n"
+"%s"
 
 #: ../lib/lmsensors.c:95
 msgid "LM Sensors"
@@ -226,7 +250,9 @@ msgstr "Défaillance du greffon Capteurs"
 msgid ""
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed."
-msgstr "Il semblerait que la valeur d’un capteur n’ait pas été correctement lue.\nLe résultat de l’opération ne peut être garanti."
+msgstr ""
+"Il semblerait que la valeur d’un capteur n’ait pas été correctement lue.\n"
+"Le résultat de l’opération ne peut être garanti."
 
 #: ../lib/sensors-interface.c:174
 msgid "Sensors t_ype:"
@@ -323,14 +349,22 @@ msgstr "%.0f tr/min"
 msgid ""
 "Xfce4 Sensors %s\n"
 "This program is published under the GPL v2.\n"
-"The license text can be found inside the program's source archive or under /usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
-msgstr "Capteurs Xfce4 %s\nCe programme est publié sous la licence GPL v2.\nLe texte de la licence peut être trouvé à l'intérieur de l'archive source du programme ou dans /usr/share/apps/LICENSES/GPL_V2 ou à http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
+"The license text can be found inside the program's source archive or under /"
+"usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-"
+"licenses/gpl-2.0.txt\n"
+msgstr ""
+"Capteurs Xfce4 %s\n"
+"Ce programme est publié sous la licence GPL v2.\n"
+"Le texte de la licence peut être trouvé à l'intérieur de l'archive source du "
+"programme ou dans /usr/share/apps/LICENSES/GPL_V2 ou à http://www.gnu.org/"
+"licenses/old-licenses/gpl-2.0.txt\n"
 
 #: ../src/main.c:70
 #, c-format
 msgid ""
 "Xfce4 Sensors %s\n"
-"Displays information about your hardware sensors, ACPI status, harddisk temperatures and Nvidia GPU's temperature.\n"
+"Displays information about your hardware sensors, ACPI status, harddisk "
+"temperatures and Nvidia GPU's temperature.\n"
 "Synopsis: \n"
 "  xfce4-sensors options\n"
 "where options are one or more of the following:\n"
@@ -339,7 +373,18 @@ msgid ""
 "  -V, --version Print version information.\n"
 "\n"
 "This program is published under the GPL v2.\n"
-msgstr "Capteurs Xfce4 %s\nAffiche des informations sur vos capteurs matériels, l'état de l'ACPI, les températures de disque dur et la température du GPU Nvidia.\nUsage :\n  options xfce4-sensors\noù les options sont un ou plusieurs des éléments suivants :\n  -h, --help       Affiche l'aide.\n  -l, --license    Affiche les informations de licence.\n  -V, --version    Affiche les informations de version.\n\nCe programme est publié sous la licence GPL v2.\n"
+msgstr ""
+"Capteurs Xfce4 %s\n"
+"Affiche des informations sur vos capteurs matériels, l'état de l'ACPI, les "
+"températures de disque dur et la température du GPU Nvidia.\n"
+"Usage :\n"
+"  options xfce4-sensors\n"
+"où les options sont un ou plusieurs des éléments suivants :\n"
+"  -h, --help       Affiche l'aide.\n"
+"  -l, --license    Affiche les informations de licence.\n"
+"  -V, --version    Affiche les informations de version.\n"
+"\n"
+"Ce programme est publié sous la licence GPL v2.\n"
 
 #: ../src/main.c:88
 #, c-format
@@ -366,7 +411,10 @@ msgid ""
 "Sensors Viewer:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Visionneur de capteurs :\nIl semblerait que la valeur d’un capteur n’ait pas été correctement lue.\nLe résultat de l’opération ne peut être garanti.\n"
+msgstr ""
+"Visionneur de capteurs :\n"
+"Il semblerait que la valeur d’un capteur n’ait pas été correctement lue.\n"
+"Le résultat de l’opération ne peut être garanti.\n"
 
 #: ../src/xfce4-sensors.desktop.in.h:1
 msgid "Sensor Viewer"
diff --git a/po/gl.po b/po/gl.po
index 1d2bba4..0b5bd6c 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-10-04 14:28+0100\n"
 "Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
 "Language-Team: Galician <proxecto at trasno.net>\n"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discos duros"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Descoñecido>"
 
diff --git a/po/he.po b/po/he.po
index 9bc6134..555968d 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2016-02-07 19:07+0000\n"
 "Last-Translator: GenghisKhan <genghiskhan at gmx.ca>\n"
 "Language-Team: Hebrew (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -159,18 +159,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "כוננים קשיחים"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s אזורי"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
diff --git a/po/hr.po b/po/hr.po
index 202156a..2de93ef 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-04 14:46+0000\n"
 "Last-Translator: Lovro Kudelić <lovro.kudelic at outlook.com>\n"
 "Language-Team: Croatian (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Tvrdi diskovi"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zone"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Nepoznato>"
 
diff --git a/po/hu.po b/po/hu.po
index 131e15f..5a32b50 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-07-24 18:10+0200\n"
 "Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
 "Language-Team: Hungarian <gnome at gnome dot hu>\n"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Merevlemezek"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zónák"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Ismeretlen>"
 
diff --git a/po/id.po b/po/id.po
index c2b6f2b..b6e69a7 100644
--- a/po/id.po
+++ b/po/id.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-23 17:50+0000\n"
 "Last-Translator: Mohamad Hasan Al Banna\n"
 "Language-Team: Indonesian (http://www.transifex.com/projects/p/xfce-panel-"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Cakram keras"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zona v%s ACPI"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Tak diketahui>"
 
diff --git a/po/is.po b/po/is.po
index 786b4e0..cc95fb6 100644
--- a/po/is.po
+++ b/po/is.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2016-04-23 09:57+0000\n"
 "Last-Translator: Sveinn í Felli <sv1 at fellsnet.is>\n"
 "Language-Team: Icelandic (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -159,18 +159,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Harðir diskar"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI m%s svæðum"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Óþekkt>"
 
diff --git a/po/it.po b/po/it.po
index 2d8a624..6e506ed 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-31 09:43+0000\n"
 "Last-Translator: cri <cri.penta at gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/xfce-panel-"
@@ -160,18 +160,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Dischi rigidi"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "v%s zone ACPI "
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Sconosciuto>"
 
diff --git a/po/ja.po b/po/ja.po
index bec5530..899ab56 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2016-03-07 03:30+0000\n"
 "Last-Translator: Masato HASHIMOTO <cabezon.hashimoto at gmail.com>\n"
 "Language-Team: Japanese (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -160,18 +160,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "ハードディスク"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s ゾーン"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<不明>"
 
diff --git a/po/ko.po b/po/ko.po
index b0af1f7..23b2254 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # ByungHyun Choi <byunghyun.choi at gmail.com>, 2005
 # 박정규(Jung-Kyu Park) <bagjunggyu at gmail.com>, 2017
@@ -10,14 +10,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 11:49+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-05 01:50+0000\n"
 "Last-Translator: 박정규(Jung-Kyu Park) <bagjunggyu at gmail.com>\n"
-"Language-Team: Korean (http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
+"Language-Team: Korean (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ko/)\n"
+"Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. initialize value label widget
@@ -39,7 +40,10 @@ msgid ""
 "Sensors Plugin:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "센서 플러그인:\n센서 기능 값을 읽는데 문제가 있는 것 같습니다.\n따라서 정상적인 동작을 보장할 수 없습니다.\n"
+msgstr ""
+"센서 플러그인:\n"
+"센서 기능 값을 읽는데 문제가 있는 것 같습니다.\n"
+"따라서 정상적인 동작을 보장할 수 없습니다.\n"
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid "UI style:"
@@ -77,8 +81,7 @@ msgstr "본문 줄 수(_N):"
 msgid "F_ont size:"
 msgstr "글꼴 크기(_O):"
 
-#. gtk_widget_set_sensitive(myFontBox,
-#. !sd->sensors->display_values_graphically);
+#. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:2036
 msgid "x-small"
 msgstr "아주 작게"
@@ -145,7 +148,9 @@ msgid ""
 "You can change a feature's properties such as name, colours, min/max value "
 "by double-clicking the entry, editing the content, and pressing \"Return\" "
 "or selecting a different field."
-msgstr "이름, 색, 최대/최소 값과 같은 기능 속성을 항목을 두번 누르고 내용을 편집한 다음 \"리턴\"키를 누르거나 다른 필드를 선택하여 바꿀 수 있습니다."
+msgstr ""
+"이름, 색, 최대/최소 값과 같은 기능 속성을 항목을 두번 누르고 내용을 편집한 다"
+"음 \"리턴\"키를 누르거나 다른 필드를 선택하여 바꿀 수 있습니다."
 
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
@@ -156,18 +161,16 @@ msgstr "이름, 색, 최대/최소 값과 같은 기능 속성을 항목을 두
 msgid "Hard disks"
 msgstr "하드 디스크"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<알 수 없음>"
 
@@ -186,14 +189,27 @@ msgstr "S.M.A.R.T 하드디스크 온도 센서"
 #: ../lib/hddtemp.c:571
 #, c-format
 msgid ""
-"\"hddtemp\" was not executed correctly, although it is executable. This is most probably due to the disks requiring root privileges to read their temperatures, and \"hddtemp\" not being setuid root.\n"
+"\"hddtemp\" was not executed correctly, although it is executable. This is "
+"most probably due to the disks requiring root privileges to read their "
+"temperatures, and \"hddtemp\" not being setuid root.\n"
 "\n"
-"An easy but dirty solution is to run \"chmod u+s %s\" as root user and restart this plugin or its panel.\n"
+"An easy but dirty solution is to run \"chmod u+s %s\" as root user and "
+"restart this plugin or its panel.\n"
 "\n"
 "Calling \"%s\" gave the following error:\n"
 "%s\n"
 "with a return value of %d.\n"
-msgstr "\"hddtemp\"가 실행 가능하지만 올바로 실행하지 않았습니다. 아마도 디스크에서 온도를 읽어들리려면 루트 권한이 필요하며, \"hddtemp\"를 루트가 실행하지 않아서 인 것 같습니다.\n\n쉽지만 지저분 맞은 해결책은 \"chmod u+s %s\"을(를) 루트 계정으로 실행하고 이 플러그인을 실행하거나 패널로 띄우는 방법입니다.\n\n\"%s\"을(를) 호출하는데 다음 오류\n%s이(가)\n반환 오류값 %d와(과) 함께 발생했습니다.\n"
+msgstr ""
+"\"hddtemp\"가 실행 가능하지만 올바로 실행하지 않았습니다. 아마도 디스크에서 "
+"온도를 읽어들리려면 루트 권한이 필요하며, \"hddtemp\"를 루트가 실행하지 않아"
+"서 인 것 같습니다.\n"
+"\n"
+"쉽지만 지저분 맞은 해결책은 \"chmod u+s %s\"을(를) 루트 계정으로 실행하고 이 "
+"플러그인을 실행하거나 패널로 띄우는 방법입니다.\n"
+"\n"
+"\"%s\"을(를) 호출하는데 다음 오류\n"
+"%s이(가)\n"
+"반환 오류값 %d와(과) 함께 발생했습니다.\n"
 
 #: ../lib/hddtemp.c:587 ../lib/hddtemp.c:611
 msgid "Suppress this message in future"
@@ -204,7 +220,9 @@ msgstr "나중에 이 메시지 숨기기"
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
-msgstr "\"%s\"을(를) 실행하는데 오류가 발생했습니다:\n%s"
+msgstr ""
+"\"%s\"을(를) 실행하는데 오류가 발생했습니다:\n"
+"%s"
 
 #: ../lib/lmsensors.c:95
 msgid "LM Sensors"
@@ -223,7 +241,9 @@ msgstr "센서 플러그인 실패"
 msgid ""
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed."
-msgstr "센서 기능 값을 읽어들이는데 문제가 있는 것 같습니다.\n따라서 정상적인 동작을 보장할 수 없습니다."
+msgstr ""
+"센서 기능 값을 읽어들이는데 문제가 있는 것 같습니다.\n"
+"따라서 정상적인 동작을 보장할 수 없습니다."
 
 #: ../lib/sensors-interface.c:174
 msgid "Sensors t_ype:"
@@ -320,14 +340,21 @@ msgstr "%.0f rpm"
 msgid ""
 "Xfce4 Sensors %s\n"
 "This program is published under the GPL v2.\n"
-"The license text can be found inside the program's source archive or under /usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
-msgstr "Xfce4 센서 %s\n이 프로그램은 GPL v2하에 나왔습니다.\n라이선스는 프로그램의 소스 아카이브 내 또는 /usr/share/apps/LICENSES/GPL_V2, http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt에서 찾을 수 있습니다\n"
+"The license text can be found inside the program's source archive or under /"
+"usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-"
+"licenses/gpl-2.0.txt\n"
+msgstr ""
+"Xfce4 센서 %s\n"
+"이 프로그램은 GPL v2하에 나왔습니다.\n"
+"라이선스는 프로그램의 소스 아카이브 내 또는 /usr/share/apps/LICENSES/GPL_V2, "
+"http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt에서 찾을 수 있습니다\n"
 
 #: ../src/main.c:70
 #, c-format
 msgid ""
 "Xfce4 Sensors %s\n"
-"Displays information about your hardware sensors, ACPI status, harddisk temperatures and Nvidia GPU's temperature.\n"
+"Displays information about your hardware sensors, ACPI status, harddisk "
+"temperatures and Nvidia GPU's temperature.\n"
 "Synopsis: \n"
 "  xfce4-sensors options\n"
 "where options are one or more of the following:\n"
@@ -336,7 +363,18 @@ msgid ""
 "  -V, --version Print version information.\n"
 "\n"
 "This program is published under the GPL v2.\n"
-msgstr "Xfce4 센서 %s\n하드웨어 센서, ACPI 상태, 하드디스크 온도와 엔비디아 GPU 온도정보를 표시합니다.\n개요: \n  xfce4-sensors options\noptions 대신 다음 중 하나 이상을 사용할 수 있습니다:\n  -h, --help    이 도움말 대화상자를 엽니다.\n  -l, --license 라이선스 정보를 출력합니다.\n  -V, --version 버전 정보를 출력합니다.\n\n이 프로그램은 GPL v2하에 나왔습니다.\n"
+msgstr ""
+"Xfce4 센서 %s\n"
+"하드웨어 센서, ACPI 상태, 하드디스크 온도와 엔비디아 GPU 온도정보를 표시합니"
+"다.\n"
+"개요: \n"
+"  xfce4-sensors options\n"
+"options 대신 다음 중 하나 이상을 사용할 수 있습니다:\n"
+"  -h, --help    이 도움말 대화상자를 엽니다.\n"
+"  -l, --license 라이선스 정보를 출력합니다.\n"
+"  -V, --version 버전 정보를 출력합니다.\n"
+"\n"
+"이 프로그램은 GPL v2하에 나왔습니다.\n"
 
 #: ../src/main.c:88
 #, c-format
@@ -363,7 +401,11 @@ msgid ""
 "Sensors Viewer:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr " \n센서 보기: \n센서 기능 값을 읽어들이는데 문제가 있는 것 같습니다.\n따라서 정상적인 동작을 보장할 수 없습니다.\n"
+msgstr ""
+" \n"
+"센서 보기: \n"
+"센서 기능 값을 읽어들이는데 문제가 있는 것 같습니다.\n"
+"따라서 정상적인 동작을 보장할 수 없습니다.\n"
 
 #: ../src/xfce4-sensors.desktop.in.h:1
 msgid "Sensor Viewer"
diff --git a/po/lt.po b/po/lt.po
index a4c69b4..15e55d1 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-04 11:40+0000\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Standusis diskas"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zonos"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Nežinoma>"
 
diff --git a/po/lv.po b/po/lv.po
index 65a23e3..e1768e7 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Pxfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-10-21 13:18+0100\n"
 "Last-Translator: Rihards Prieditis <rprieditis at gmail.com>\n"
 "Language-Team: Latvian <translation-team-lv at lists.sourceforge.net>\n"
@@ -164,18 +164,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Cietie diski"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zonas"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Nezināms>"
 
diff --git a/po/ms.po b/po/ms.po
index 7582494..efede1c 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-06-24 12:23+0000\n"
 "Last-Translator: abuyop <abuyop at gmail.com>\n"
 "Language-Team: Malay (http://www.transifex.com/projects/p/xfce-panel-plugins/"
@@ -160,18 +160,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Cakera keras"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zon"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Tidak Diketahui>"
 
diff --git a/po/nb.po b/po/nb.po
index 67e66cc..60a6f0c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-18 21:30+0000\n"
 "Last-Translator: kingu <comradekingu at gmail.com>\n"
 "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/xfce-"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Harddisker"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s soner"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
diff --git a/po/nl.po b/po/nl.po
index ac56f1b..c8bde8e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-22 11:15+0000\n"
 "Last-Translator: Pjotr123 <pjotrvertaalt at gmail.com>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/xfce-panel-plugins/"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Harde schijven"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
diff --git a/po/oc.po b/po/oc.po
index eede32a..6629147 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-04 11:31+0000\n"
 "Last-Translator: Xfce Bot <transifex at xfce.org>\n"
 "Language-Team: Occitan (post 1500) (http://www.transifex.com/xfce/xfce-panel-"
@@ -165,18 +165,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Disques durs"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zònas ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Desconegut>"
 
diff --git a/po/pl.po b/po/pl.po
index 54b3942..fe7e513 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-08-29 20:42+0000\n"
 "Last-Translator: Piotr Sokół <psokol at jabster.pl>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/xfce-panel-"
@@ -165,18 +165,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Dyski twarde"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI wersja %s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<nieznana>"
 
diff --git a/po/pt.po b/po/pt.po
index 5120536..fbb85fd 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-28 22:10+0000\n"
 "Last-Translator: magnos15 <alexandremagnos15 at gmail.com>\n"
 "Language-Team: Portuguese (http://www.transifex.com/projects/p/xfce-panel-"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas v%s ACPI"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Desconhecido>"
 
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 33348ee..c047e65 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-06-11 01:14+0000\n"
 "Last-Translator: Michael Ferreira Martins <michaelfm21 at gmail.com>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/xfce-"
@@ -163,18 +163,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas v%s ACPI"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Desconhecido>"
 
diff --git a/po/ru.po b/po/ru.po
index f54a55f..6773353 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Aleksandr P <davian818 at gmail.com>, 2014
 # Andrey Fedoseev <andrey.fedoseev at gmail.com>, 2006
@@ -13,15 +13,18 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 11:49+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2017-02-05 14:11+0000\n"
 "Last-Translator: Igor <f2404 at yandex.ru>\n"
-"Language-Team: Russian (http://www.transifex.com/xfce/xfce-panel-plugins/language/ru/)\n"
+"Language-Team: Russian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ru/)\n"
+"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
+"%100>=11 && n%100<=14)? 2 : 3);\n"
 
 #. initialize value label widget
 #: ../panel-plugin/sensors-plugin.c:365 ../panel-plugin/sensors-plugin.c:467
@@ -42,7 +45,10 @@ msgid ""
 "Sensors Plugin:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Сообщение:\nНевозможно считать показания системы.\nОтображаемые данные могут быть не верны.\n"
+msgstr ""
+"Сообщение:\n"
+"Невозможно считать показания системы.\n"
+"Отображаемые данные могут быть не верны.\n"
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid "UI style:"
@@ -80,8 +86,7 @@ msgstr "_Количество строк текста:"
 msgid "F_ont size:"
 msgstr "Р_азмер шрифта:"
 
-#. gtk_widget_set_sensitive(myFontBox,
-#. !sd->sensors->display_values_graphically);
+#. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:2036
 msgid "x-small"
 msgstr "крошечный"
@@ -148,7 +153,10 @@ msgid ""
 "You can change a feature's properties such as name, colours, min/max value "
 "by double-clicking the entry, editing the content, and pressing \"Return\" "
 "or selecting a different field."
-msgstr "Вы можете изменять свойства, такие как имя, цвет, минимальное или максимальное значение, двойным щелчком мыши по параметру, редактировать содержимое и нажать «Enter» или выбрать другое поле. "
+msgstr ""
+"Вы можете изменять свойства, такие как имя, цвет, минимальное или "
+"максимальное значение, двойным щелчком мыши по параметру, редактировать "
+"содержимое и нажать «Enter» или выбрать другое поле. "
 
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
@@ -159,18 +167,16 @@ msgstr "Вы можете изменять свойства, такие как 
 msgid "Hard disks"
 msgstr "Жёсткие диски"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s зоны"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Неизвестно>"
 
@@ -189,14 +195,26 @@ msgstr "Температура диска по S.M.A.R.T."
 #: ../lib/hddtemp.c:571
 #, c-format
 msgid ""
-"\"hddtemp\" was not executed correctly, although it is executable. This is most probably due to the disks requiring root privileges to read their temperatures, and \"hddtemp\" not being setuid root.\n"
+"\"hddtemp\" was not executed correctly, although it is executable. This is "
+"most probably due to the disks requiring root privileges to read their "
+"temperatures, and \"hddtemp\" not being setuid root.\n"
 "\n"
-"An easy but dirty solution is to run \"chmod u+s %s\" as root user and restart this plugin or its panel.\n"
+"An easy but dirty solution is to run \"chmod u+s %s\" as root user and "
+"restart this plugin or its panel.\n"
 "\n"
 "Calling \"%s\" gave the following error:\n"
 "%s\n"
 "with a return value of %d.\n"
-msgstr "Команда «hddtemp» выполнена некорректно. Это может случиться, если для получения доступа к измерению температуры дисков нужны права суперпользователя.\nСамое простое, но нежелательное решение выполнить команду «chmod u+s %s» от имени суперпользователя и перезапустить модуль или панель.\n\nВывод «%s» сообщает о следующей ошибке:\n%s\nс кодом завершения %d.\n"
+msgstr ""
+"Команда «hddtemp» выполнена некорректно. Это может случиться, если для "
+"получения доступа к измерению температуры дисков нужны права "
+"суперпользователя.\n"
+"Самое простое, но нежелательное решение выполнить команду «chmod u+s %s» от "
+"имени суперпользователя и перезапустить модуль или панель.\n"
+"\n"
+"Вывод «%s» сообщает о следующей ошибке:\n"
+"%s\n"
+"с кодом завершения %d.\n"
 
 #: ../lib/hddtemp.c:587 ../lib/hddtemp.c:611
 msgid "Suppress this message in future"
@@ -207,7 +225,9 @@ msgstr "Не показывать это сообщение в дальнейш
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
-msgstr "Ошибка при выполнении «%s»:\n%s"
+msgstr ""
+"Ошибка при выполнении «%s»:\n"
+"%s"
 
 #: ../lib/lmsensors.c:95
 msgid "LM Sensors"
@@ -226,7 +246,9 @@ msgstr "Сбой модуля"
 msgid ""
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed."
-msgstr "Похоже что возникла проблема при чтении показаний датчиков.\nОтображаемые данные могут быть не верны."
+msgstr ""
+"Похоже что возникла проблема при чтении показаний датчиков.\n"
+"Отображаемые данные могут быть не верны."
 
 #: ../lib/sensors-interface.c:174
 msgid "Sensors t_ype:"
@@ -323,14 +345,22 @@ msgstr "%5.0f об/мин."
 msgid ""
 "Xfce4 Sensors %s\n"
 "This program is published under the GPL v2.\n"
-"The license text can be found inside the program's source archive or under /usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
-msgstr "Xfce4 Sensors %s\nЭта программа выпущена под лицензией GPL v2.\nТекст лицензии может быть найден внутри архива с исходным кодом или в /usr/share/apps/LICENSES/GPL_V2, а также на http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n"
+"The license text can be found inside the program's source archive or under /"
+"usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-"
+"licenses/gpl-2.0.txt\n"
+msgstr ""
+"Xfce4 Sensors %s\n"
+"Эта программа выпущена под лицензией GPL v2.\n"
+"Текст лицензии может быть найден внутри архива с исходным кодом или в /usr/"
+"share/apps/LICENSES/GPL_V2, а также на http://www.gnu.org/licenses/old-"
+"licenses/gpl-2.0.txt\n"
 
 #: ../src/main.c:70
 #, c-format
 msgid ""
 "Xfce4 Sensors %s\n"
-"Displays information about your hardware sensors, ACPI status, harddisk temperatures and Nvidia GPU's temperature.\n"
+"Displays information about your hardware sensors, ACPI status, harddisk "
+"temperatures and Nvidia GPU's temperature.\n"
 "Synopsis: \n"
 "  xfce4-sensors options\n"
 "where options are one or more of the following:\n"
@@ -339,7 +369,16 @@ msgid ""
 "  -V, --version Print version information.\n"
 "\n"
 "This program is published under the GPL v2.\n"
-msgstr "Сенсоры Xfce4 %s\nОтображение информации о датчиках и ACPI.\nСинтаксис: \n  Опции xfce4-sensors выберите один из следующих параметров:\n  -h, --help      Выводит это сообщение.\n  -l, --license   Выводит информацию о лицензии.\n  -V, --version   Выводит информацию о версии.\n\nЭта программа публикуется под лицензией GPL v2.\n"
+msgstr ""
+"Сенсоры Xfce4 %s\n"
+"Отображение информации о датчиках и ACPI.\n"
+"Синтаксис: \n"
+"  Опции xfce4-sensors выберите один из следующих параметров:\n"
+"  -h, --help      Выводит это сообщение.\n"
+"  -l, --license   Выводит информацию о лицензии.\n"
+"  -V, --version   Выводит информацию о версии.\n"
+"\n"
+"Эта программа публикуется под лицензией GPL v2.\n"
 
 #: ../src/main.c:88
 #, c-format
@@ -366,7 +405,10 @@ msgid ""
 "Sensors Viewer:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Сообщение:\nНевозможно считать показания системы.\nОтображаемые данные могут быть не верны.\n"
+msgstr ""
+"Сообщение:\n"
+"Невозможно считать показания системы.\n"
+"Отображаемые данные могут быть не верны.\n"
 
 #: ../src/xfce4-sensors.desktop.in.h:1
 msgid "Sensor Viewer"
diff --git a/po/sk.po b/po/sk.po
index c0a29b1..0cb65a7 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2015-02-26 12:00+0000\n"
 "Last-Translator: Slavko <linux at slavino.sk>\n"
 "Language-Team: Slovak (http://www.transifex.com/projects/p/xfce-panel-"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Pevné disky"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zóny ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Neznámy>"
 
diff --git a/po/sq.po b/po/sq.po
index c20feb8..fe46141 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2008-11-04 23:27+0200\n"
 "Last-Translator: Besnik Bleta <besnik at programeshqip.org>\n"
 "Language-Team: Albanian <translation-team-sq at lists.sourceforge.net>\n"
@@ -163,18 +163,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Hard disqe"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zona ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<I/e panjohur>"
 
diff --git a/po/sr.po b/po/sr.po
index 2f1203f..56dfa6c 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-07-01 21:12+0000\n"
 "Last-Translator: Саша Петровић <salepetronije at gmail.com>\n"
 "Language-Team: Serbian (http://www.transifex.com/projects/p/xfce-panel-"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Чврсти дискови"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "АЦПИ"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "АЦПИ v%s области"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Непознато>"
 
diff --git a/po/sv.po b/po/sv.po
index bf3874c..6188e4b 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2015-11-01 21:33+0000\n"
 "Last-Translator: Påvel Nicklasson <pavelnicklasson at bahnhof.se>\n"
 "Language-Team: Swedish (http://www.transifex.com/xfce/xfce-panel-plugins/"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Hårddiskar"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zoner"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Okänt>"
 
diff --git a/po/th.po b/po/th.po
index 0504355..176c587 100644
--- a/po/th.po
+++ b/po/th.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-07-14 15:32+0000\n"
 "Last-Translator: Theppitak Karoonboonyanan <theppitak at gmail.com>\n"
 "Language-Team: Thai (http://www.transifex.com/projects/p/xfce-panel-plugins/"
@@ -159,18 +159,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "ฮาร์ดดิสก์"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "โซนต่างๆ ของ ACPI v%s"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<ไม่ทราบ>"
 
diff --git a/po/tr.po b/po/tr.po
index 6c678cc..2c03b12 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-12-11 21:01+0000\n"
 "Last-Translator: Natavan Mirzayeva <mirzayevanatavan at gmail.com>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/xfce-panel-"
@@ -163,18 +163,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Sabit diskler "
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s alanları"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Bilinmiyor>"
 
diff --git a/po/ug.po b/po/ug.po
index e2a71f9..a892144 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2013-07-17 07:00+0000\n"
 "Last-Translator: kawichi\n"
 "Language-Team: Uighur (http://www.transifex.com/projects/p/xfce/language/"
@@ -161,18 +161,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "قاتتىق دىسكا"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s رايونى"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<نامەلۇم>"
 
diff --git a/po/uk.po b/po/uk.po
index f043b6a..0c04540 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-06-03 09:38+0000\n"
 "Last-Translator: Yarema aka Knedlyk <yupadmin at gmail.com>\n"
 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/xfce-panel-"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "Жорсткі диски"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "Інтерфейс ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s зони"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<Невідомо>"
 
diff --git a/po/ur.po b/po/ur.po
index 24475dd..745dcc7 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-05-14 03:19+0500\n"
 "Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
 "Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -165,18 +165,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "ہارڈ ڈسکس"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s علاقے"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<نامعلوم>"
 
diff --git a/po/ur_PK.po b/po/ur_PK.po
index 24475dd..745dcc7 100644
--- a/po/ur_PK.po
+++ b/po/ur_PK.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2009-05-14 03:19+0500\n"
 "Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
 "Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -165,18 +165,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "ہارڈ ڈسکس"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s علاقے"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<نامعلوم>"
 
diff --git a/po/vi.po b/po/vi.po
index 5be1a91..7f38109 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2006-02-19 22:51+0300\n"
 "Last-Translator: Phan Vĩnh Thịnh <teppi at vnlinux.org>\n"
 "Language-Team: Vietnamese <none at li.org>\n"
@@ -166,18 +166,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr ""
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr ""
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr ""
 
diff --git a/po/xfce4-sensors-plugin.pot b/po/xfce4-sensors-plugin.pot
deleted file mode 100644
index 1bf5ded..0000000
--- a/po/xfce4-sensors-plugin.pot
+++ /dev/null
@@ -1,385 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. initialize value label widget
-#: ../panel-plugin/sensors-plugin.c:365 ../panel-plugin/sensors-plugin.c:467
-#: ../panel-plugin/sensors-plugin.c:1144
-msgid "<span><b>Sensors</b></span>"
-msgstr ""
-
-#. widget = sensors->eventbox;
-#: ../panel-plugin/sensors-plugin.c:948
-msgid "No sensors selected!"
-msgstr ""
-
-#. FIXME: either print nothing, or undertake appropriate action,
-#. * or pop up a message box.
-#: ../panel-plugin/sensors-plugin.c:988
-#, c-format
-msgid ""
-"Sensors Plugin:\n"
-"Seems like there was a problem reading a sensor feature value.\n"
-"Proper proceeding cannot be guaranteed.\n"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1862
-msgid "UI style:"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1863
-msgid "_text"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1865
-msgid "_progress bars"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1867
-msgid "_tachos"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1912
-msgid "Show _labels"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1942
-msgid "Show colored _bars"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1970
-msgid "_Show title"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:1994
-msgid "_Number of text lines:"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2029
-msgid "F_ont size:"
-msgstr ""
-
-#. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors-plugin.c:2036
-msgid "x-small"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2037
-msgid "small"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2038
-msgid "medium"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2039
-msgid "large"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2040
-msgid "x-large"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2071
-msgid "F_ont:"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2105
-msgid "Show _Units"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2126
-msgid "Small horizontal s_pacing"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2148
-msgid "Suppress messages"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2166
-msgid "Suppress tooltip"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2191
-msgid "E_xecute on double click:"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2234
-msgid "_View"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2268
-msgid "_Miscellaneous"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2343 ../panel-plugin/sensors-plugin.h:30
-#: ../lib/hddtemp.c:162
-msgid "Sensors Plugin"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2351
-msgid "Properties"
-msgstr ""
-
-#: ../panel-plugin/sensors-plugin.c:2384
-msgid ""
-"You can change a feature's properties such as name, colours, min/max value "
-"by double-clicking the entry, editing the content, and pressing \"Return\" "
-"or selecting a different field."
-msgstr ""
-
-#. only use this if no hddtemp sensor
-#. or do only use this , if it is an lmsensors device. whatever.
-#. FIXME: compare strings, or also have hddtemp and acpi store numeric values
-#. assert correctly saved file
-#: ../lib/configuration.c:162 ../lib/configuration.c:368
-#: ../lib/configuration.c:375 ../lib/hddtemp.c:393
-msgid "Hard disks"
-msgstr ""
-
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
-msgid "ACPI"
-msgstr ""
-
-#: ../lib/acpi.c:564
-#, c-format
-msgid "ACPI v%s zones"
-msgstr ""
-
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
-msgid "<Unknown>"
-msgstr ""
-
-#: ../lib/nvidia.c:61
-msgid "NVidia GPU core temperature"
-msgstr ""
-
-#: ../lib/nvidia.c:62
-msgid "nvidia"
-msgstr ""
-
-#: ../lib/hddtemp.c:392
-msgid "S.M.A.R.T. harddisk temperatures"
-msgstr ""
-
-#: ../lib/hddtemp.c:571
-#, c-format
-msgid ""
-"\"hddtemp\" was not executed correctly, although it is executable. This is "
-"most probably due to the disks requiring root privileges to read their "
-"temperatures, and \"hddtemp\" not being setuid root.\n"
-"\n"
-"An easy but dirty solution is to run \"chmod u+s %s\" as root user and "
-"restart this plugin or its panel.\n"
-"\n"
-"Calling \"%s\" gave the following error:\n"
-"%s\n"
-"with a return value of %d.\n"
-msgstr ""
-
-#: ../lib/hddtemp.c:587 ../lib/hddtemp.c:611
-msgid "Suppress this message in future"
-msgstr ""
-
-#: ../lib/hddtemp.c:605
-#, c-format
-msgid ""
-"An error occurred when executing \"%s\":\n"
-"%s"
-msgstr ""
-
-#: ../lib/lmsensors.c:95
-msgid "LM Sensors"
-msgstr ""
-
-#: ../lib/lmsensors.c:364 ../lib/lmsensors.c:411
-#, c-format
-msgid "Error: Could not connect to sensors!"
-msgstr ""
-
-#: ../lib/sensors-interface.c:87
-msgid "Sensors Plugin Failure"
-msgstr ""
-
-#: ../lib/sensors-interface.c:88
-msgid ""
-"Seems like there was a problem reading a sensor feature value.\n"
-"Proper proceeding cannot be guaranteed."
-msgstr ""
-
-#: ../lib/sensors-interface.c:174
-msgid "Sensors t_ype:"
-msgstr ""
-
-#: ../lib/sensors-interface.c:200
-msgid "Description:"
-msgstr ""
-
-#: ../lib/sensors-interface.c:233
-msgid "U_pdate interval (seconds):"
-msgstr ""
-
-#: ../lib/sensors-interface.c:273
-msgid "Name"
-msgstr ""
-
-#: ../lib/sensors-interface.c:285
-msgid "Value"
-msgstr ""
-
-#: ../lib/sensors-interface.c:293
-msgid "Show"
-msgstr ""
-
-#: ../lib/sensors-interface.c:302
-msgid "Color"
-msgstr ""
-
-#: ../lib/sensors-interface.c:315
-msgid "Min"
-msgstr ""
-
-#: ../lib/sensors-interface.c:332
-msgid "Max"
-msgstr ""
-
-#: ../lib/sensors-interface.c:373
-msgid "Temperature scale:"
-msgstr ""
-
-#: ../lib/sensors-interface.c:375
-msgid "_Celsius"
-msgstr ""
-
-#: ../lib/sensors-interface.c:377
-msgid "_Fahrenheit"
-msgstr ""
-
-#: ../lib/sensors-interface.c:413
-msgid "_Sensors"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:73 ../lib/sensors-interface-common.c:74
-msgid "No sensors found!"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:145
-#, c-format
-msgid "%.0f °F"
-msgstr ""
-
-#. Celsius
-#: ../lib/sensors-interface-common.c:148
-#, c-format
-msgid "%.0f °C"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:153
-#, c-format
-msgid "%+.3f V"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:157
-#, c-format
-msgid "%.0f mWh"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:162
-msgid "off"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:164
-msgid "on"
-msgstr ""
-
-#: ../lib/sensors-interface-common.c:168
-#, c-format
-msgid "%.0f rpm"
-msgstr ""
-
-#: ../src/main.c:58
-#, c-format
-msgid ""
-"Xfce4 Sensors %s\n"
-"This program is published under the GPL v2.\n"
-"The license text can be found inside the program's source archive or under /"
-"usr/share/apps/LICENSES/GPL_V2 or at http://www.gnu.org/licenses/old-"
-"licenses/gpl-2.0.txt\n"
-msgstr ""
-
-#: ../src/main.c:70
-#, c-format
-msgid ""
-"Xfce4 Sensors %s\n"
-"Displays information about your hardware sensors, ACPI status, harddisk "
-"temperatures and Nvidia GPU's temperature.\n"
-"Synopsis: \n"
-"  xfce4-sensors options\n"
-"where options are one or more of the following:\n"
-"  -h, --help    Print this help dialog.\n"
-"  -l, --license Print license information.\n"
-"  -V, --version Print version information.\n"
-"\n"
-"This program is published under the GPL v2.\n"
-msgstr ""
-
-#: ../src/main.c:88
-#, c-format
-msgid "Xfce4 Sensors %s\n"
-msgstr ""
-
-#: ../src/interface.c:85
-msgid "_Overview"
-msgstr ""
-
-#: ../src/interface.c:105
-msgid "_Tachometers"
-msgstr ""
-
-#: ../src/interface.c:122
-msgid "Sensors Viewer"
-msgstr ""
-
-#. FIXME: either print nothing, or undertake appropriate action,
-#. * or pop up a message box.
-#: ../src/actions.c:80
-#, c-format
-msgid ""
-"Sensors Viewer:\n"
-"Seems like there was a problem reading a sensor feature value.\n"
-"Proper proceeding cannot be guaranteed.\n"
-msgstr ""
-
-#: ../src/xfce4-sensors.desktop.in.h:1
-msgid "Sensor Viewer"
-msgstr ""
-
-#: ../src/xfce4-sensors.desktop.in.h:2
-#: ../panel-plugin/xfce4-sensors-plugin.desktop.in.h:2
-msgid "Show sensor values."
-msgstr ""
-
-#: ../src/xfce4-sensors.desktop.in.h:3
-msgid "Sensor Values Viewer"
-msgstr ""
-
-#: ../panel-plugin/xfce4-sensors-plugin.desktop.in.h:1
-msgid "Sensor plugin"
-msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 65ee5d6..41bb72e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-12-03 05:20+0000\n"
 "Last-Translator: 玉堂白鹤 <yjwork at qq.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/xfce-"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "硬盘"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s 区域"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<未知>"
 
diff --git a/po/zh_TW.po b/po/zh_TW.po
index d593d16..22b82d5 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-04 20:48+0100\n"
+"POT-Creation-Date: 2017-02-05 23:13+0100\n"
 "PO-Revision-Date: 2014-05-01 13:27+0000\n"
 "Last-Translator: 柏諺 黃 <s8321414 at gmail.com>\n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/xfce-"
@@ -162,18 +162,16 @@ msgstr ""
 msgid "Hard disks"
 msgstr "硬碟"
 
-#: ../lib/acpi.c:561 ../lib/acpi.c:571 ../lib/acpi.c:572
+#: ../lib/acpi.c:547 ../lib/acpi.c:557 ../lib/acpi.c:558
 msgid "ACPI"
 msgstr "ACPI"
 
-#: ../lib/acpi.c:564
+#: ../lib/acpi.c:550
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s 區"
 
-#. who knows, if we obtain non-NULL version at all...
-#. || g_strisempty(version))
-#: ../lib/acpi.c:725
+#: ../lib/acpi.c:703
 msgid "<Unknown>"
 msgstr "<未知>"
 
diff --git a/src/callbacks.c b/src/callbacks.c
index 7b49c25..05419d2 100644
--- a/src/callbacks.c
+++ b/src/callbacks.c
@@ -76,7 +76,7 @@ on_main_window_response (GtkWidget *dlg, int response, t_sensors_dialog *sd)
 
 
 void
-sensor_entry_changed (GtkWidget *widget, t_sensors_dialog *sd)
+sensor_entry_changed_ (GtkWidget *widget, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
     t_chip *chip;
@@ -98,7 +98,7 @@ sensor_entry_changed (GtkWidget *widget, t_sensors_dialog *sd)
 
 
 void
-list_cell_text_edited (GtkCellRendererText *cellrenderertext,
+list_cell_text_edited_ (GtkCellRendererText *cellrenderertext,
                       gchar *path_str, gchar *new_text, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -156,7 +156,7 @@ list_cell_text_edited (GtkCellRendererText *cellrenderertext,
 
 
 void
-list_cell_toggle (GtkCellRendererToggle *cell, gchar *path_str,
+list_cell_toggle_ (GtkCellRendererToggle *cell, gchar *path_str,
                   t_sensors_dialog *sd)
 {
     t_chip *chip;
@@ -220,7 +220,7 @@ list_cell_toggle (GtkCellRendererToggle *cell, gchar *path_str,
 }
 
 void
-list_cell_color_edited (GtkCellRendererText *cellrenderertext, gchar *path_str,
+list_cell_color_edited_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
                        gchar *new_color, t_sensors_dialog *sd)
 {
       gint gtk_combo_box_active;
@@ -279,7 +279,7 @@ list_cell_color_edited (GtkCellRendererText *cellrenderertext, gchar *path_str,
 }
 
 void
-minimum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+minimum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
                  gchar *new_value, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -326,7 +326,7 @@ minimum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
 }
 
 void
-maximum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
+maximum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
             gchar *new_value, t_sensors_dialog *sd)
 {
     gint gtk_combo_box_active;
@@ -374,7 +374,7 @@ maximum_changed (GtkCellRendererText *cellrenderertext, gchar *path_str,
 }
 
 void
-adjustment_value_changed (GtkWidget *widget, t_sensors_dialog* sd)
+adjustment_value_changed_ (GtkWidget *widget, t_sensors_dialog* sd)
 {
     TRACE ("enters adjustment_value_changed ");
 
@@ -392,7 +392,7 @@ adjustment_value_changed (GtkWidget *widget, t_sensors_dialog* sd)
 }
 
 void
-temperature_unit_change (GtkWidget *widget, t_sensors_dialog *sd)
+temperature_unit_change_ (GtkWidget *widget, t_sensors_dialog *sd)
 {
     TRACE ("enters temperature_unit_change ");
 
diff --git a/src/callbacks.h b/src/callbacks.h
index 7ce83d2..ffe5813 100644
--- a/src/callbacks.h
+++ b/src/callbacks.h
@@ -45,5 +45,28 @@ void on_main_window_response (GtkWidget *dlg, int response, t_sensors_dialog *sd
 
 void on_font_set (GtkWidget *widget, gpointer data);
 
-#endif /* __CALLBACKS_H */
+/* Functions for implementing the sensors interface common callback functions */
+
+void adjustment_value_changed_  (GtkWidget *widget, t_sensors_dialog *sd); // for update timer box
+
+void sensor_entry_changed_ (GtkWidget *widget, t_sensors_dialog *sd);
+
+void list_cell_text_edited_ (GtkCellRendererText *cellrenderertext,
+                      gchar *path_str, gchar *new_text, t_sensors_dialog *sd);
+
+void list_cell_toggle_ (GtkCellRendererToggle *cell, gchar *path_str,
+                  t_sensors_dialog *sd);
+
+void list_cell_color_edited_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+                       gchar *new_color, t_sensors_dialog *sd);
 
+void minimum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+                 gchar *new_value, t_sensors_dialog *sd);
+
+void maximum_changed_ (GtkCellRendererText *cellrenderertext, gchar *path_str,
+            gchar *new_value, t_sensors_dialog *sd);
+
+void temperature_unit_change_ (GtkWidget *widget, t_sensors_dialog *sd);
+
+
+#endif /* __CALLBACKS_H */
diff --git a/src/main.c b/src/main.c
index 3408529..d38a884 100644
--- a/src/main.c
+++ b/src/main.c
@@ -151,6 +151,16 @@ main (int argc, char **argv)
     /* start the Gtk engine */
     gtk_init (&argc, &argv);
 
+    /* declare callback functions for libxfce4sensors */
+    adjustment_value_changed = &adjustment_value_changed_;
+    sensor_entry_changed = &sensor_entry_changed_;
+    list_cell_text_edited= &list_cell_text_edited_;
+    list_cell_toggle = &list_cell_toggle_;
+    list_cell_color_edited = &list_cell_color_edited_;
+    minimum_changed = &minimum_changed_;
+    maximum_changed = &maximum_changed_;
+    temperature_unit_change = &temperature_unit_change_;
+
     /* initialize sensor stuff */
     ptr_sensors_dialog = initialize_sensors_structures ();
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list