[Goodies-commits] r4960 - in xfce4-sensors-plugin/trunk: panel-plugin po

Fabian Nowak timystery at xfce.org
Tue Jun 17 23:19:11 CEST 2008


Author: timystery
Date: 2008-06-17 21:19:11 +0000 (Tue, 17 Jun 2008)
New Revision: 4960

Modified:
   xfce4-sensors-plugin/trunk/panel-plugin/configuration.c
   xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c
   xfce4-sensors-plugin/trunk/panel-plugin/middlelayer.c
   xfce4-sensors-plugin/trunk/panel-plugin/sensors.c
   xfce4-sensors-plugin/trunk/panel-plugin/types.h
   xfce4-sensors-plugin/trunk/po/ca.po
   xfce4-sensors-plugin/trunk/po/cs.po
   xfce4-sensors-plugin/trunk/po/da.po
   xfce4-sensors-plugin/trunk/po/de.po
   xfce4-sensors-plugin/trunk/po/el.po
   xfce4-sensors-plugin/trunk/po/en_GB.po
   xfce4-sensors-plugin/trunk/po/eu.po
   xfce4-sensors-plugin/trunk/po/fr.po
   xfce4-sensors-plugin/trunk/po/hu.po
   xfce4-sensors-plugin/trunk/po/ja.po
   xfce4-sensors-plugin/trunk/po/ko.po
   xfce4-sensors-plugin/trunk/po/lt.po
   xfce4-sensors-plugin/trunk/po/lv.po
   xfce4-sensors-plugin/trunk/po/pl.po
   xfce4-sensors-plugin/trunk/po/pt_BR.po
   xfce4-sensors-plugin/trunk/po/pt_PT.po
   xfce4-sensors-plugin/trunk/po/ru.po
   xfce4-sensors-plugin/trunk/po/sq.po
   xfce4-sensors-plugin/trunk/po/ur.po
   xfce4-sensors-plugin/trunk/po/vi.po
   xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot
   xfce4-sensors-plugin/trunk/po/zh_TW.po
Log:
- added ability to change names of disk drives
- for stirng  comparison purposes, had to make update-po again


Modified: xfce4-sensors-plugin/trunk/panel-plugin/configuration.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/configuration.c	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/panel-plugin/configuration.c	2008-06-17 21:19:11 UTC (rev 4960)
@@ -136,8 +136,11 @@
                xfce_rc_write_int_entry (rc, "Id", get_Id_from_address(i, j, sensors));
 
                /* only use this if no hddtemp sensor */
-               if ( strcmp(chipfeature->name, _("Hard disks")) != 0 )
+               /* or do only use this , if it is an lmsensors device. whatever. */
+               if ( strcmp(chip->sensorId, _("Hard disks")) != 0 ) /* chip->name? */
                     xfce_rc_write_int_entry (rc, "Address", j);
+                else
+                    xfce_rc_write_entry (rc, "DeviceName", chipfeature->devicename);
 
                xfce_rc_write_entry (rc, "Name", chipfeature->name);
 
@@ -311,13 +314,14 @@
 
                         id = (gint) xfce_rc_read_int_entry (rc, "Id", 0);
 
-                        if ( strcmp(chip->name, _("Hard disks")) != 0 )
+                        if ( strcmp(chip->sensorId, _("Hard disks")) != 0 )
                             address = (gint) xfce_rc_read_int_entry (rc, "Address", 0);
                         else
+
                          /* FIXME: compare strings, or also have hddtmep and acpi store numeric values */
 
                         /* assert correctly saved file */
-                        if (strcmp(chip->name, _("Hard disks")) != 0) {
+                        if (strcmp(chip->sensorId, _("Hard disks")) != 0) { /* chip->name? */
                             chipfeature = g_ptr_array_index(chip->chip_features, id);
                             /* FIXME: it might be necessary to use sensors->addresses here */
                             /* g_return_if_fail
@@ -325,6 +329,11 @@
                             if (chipfeature->address != address)
                                 continue;
                         }
+                        else if ((value = xfce_rc_read_entry (rc, "DeviceName", NULL))
+                            && *value) {
+                            chipfeature->devicename = g_strdup(value);
+                            /* g_free (value); */
+                        }
 
                         if ((value = xfce_rc_read_entry (rc, "Name", NULL))
                                 && *value) {
@@ -349,6 +358,7 @@
                                 && *value)
                             chipfeature->max_value = atof (value);
 
+
                     } /* end if */
 
                 } /* end for */

Modified: xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c	2008-06-17 21:19:11 UTC (rev 4960)
@@ -128,7 +128,8 @@
         if ( strncmp (dirname, "hd", 2)==0 || strncmp (dirname, "sd", 2)==0) {
             /* TODO: look, if /dev/dirname exists? */
             chipfeature = g_new0 (t_chipfeature, 1);
-            chipfeature->name = g_strconcat ("/dev/", dirname, NULL);;
+            chipfeature->devicename = g_strconcat ("/dev/", dirname, NULL);
+            chipfeature->name = g_strdup(chipfeature->devicename);
             g_ptr_array_add (chip->chip_features, chipfeature);
             chip->num_features++;
         }
@@ -161,7 +162,8 @@
              strncmp (dirname, "dm-", 3)!=0 ) {
             /* TODO: look, if /dev/dirname exists? */
             chipfeature = g_new0 (t_chipfeature, 1);
-            chipfeature->name = g_strconcat ("/dev/", dirname, NULL); /* /proc/ide/hda/model ?? */
+            chipfeature->devicename = g_strconcat ("/dev/", dirname, NULL); /* /proc/ide/hda/model ?? */
+            chipfeature->name = g_strdup(chipfeature->devicename);
             g_ptr_array_add (chip->chip_features, chipfeature);
             chip->num_features++;
         }
@@ -184,7 +186,7 @@
     for (i=0; i<chip->num_features; i++)
     {
         chipfeature = g_ptr_array_index (chip->chip_features, i);
-        result = get_hddtemp_value (chipfeature->name, suppressmessage);
+        result = get_hddtemp_value (chipfeature->devicename, suppressmessage);
         if (result == 0.0)
         {
             DBG ("removing single disk");
@@ -230,6 +232,8 @@
 
        chipfeature->address = diskIndex;
 
+       /* chipfeature->name = g_strdup(chipfeature->devicename); */
+
        chipfeature->color = "#B000B0";
        chipfeature->valid = TRUE;
        chipfeature->formatted_value = g_strdup ("0.0"); /* _printf("%+5.1f", 0.0); */
@@ -412,7 +416,7 @@
 
     cf = (t_chipfeature *) chip_feature;
 
-    value = get_hddtemp_value (cf->name, NULL);
+    value = get_hddtemp_value (cf->devicename, NULL);
 
     /* actually, that's done in the gui part */
     g_free (cf->formatted_value);

Modified: xfce4-sensors-plugin/trunk/panel-plugin/middlelayer.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/middlelayer.c	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/panel-plugin/middlelayer.c	2008-06-17 21:19:11 UTC (rev 4960)
@@ -171,7 +171,7 @@
             g_assert (number<chip->num_features);
             feature = (t_chipfeature *) g_ptr_array_index (chip->chip_features, number);
             g_assert (feature!=NULL);
-            *value = get_hddtemp_value (feature->name, NULL);
+            *value = get_hddtemp_value (feature->devicename, NULL);
             if (*value==ZERO_KELVIN) {
                 return NO_VALID_HDDTEMP;
             }
@@ -206,6 +206,7 @@
     cf = (t_chipfeature *) chipfeature;
 
     g_free (cf->name);
+    g_free (cf->devicename);
     g_free (cf->formatted_value);
     g_free (cf->color);
 }

Modified: xfce4-sensors-plugin/trunk/panel-plugin/sensors.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/sensors.c	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/panel-plugin/sensors.c	2008-06-17 21:19:11 UTC (rev 4960)
@@ -1489,7 +1489,7 @@
     gtk_tree_store_set (GTK_TREE_STORE (model), &iter, 0, new_text, -1);
     chip = (t_chip *) g_ptr_array_index(sd->sensors->chips, gtk_combo_box_active);
 
-    if (chip->type==LMSENSOR) { /* No Bug. The cryptic filesystem names are
+    if (chip->type!=ACPI) { /* No Bug. The cryptic filesystem names are
                                   needed for the update in ACPI and hddtemp. */
         chipfeature = (t_chipfeature *) g_ptr_array_index (chip->chip_features,
                                                             atoi(path_str));

Modified: xfce4-sensors-plugin/trunk/panel-plugin/types.h
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/types.h	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/panel-plugin/types.h	2008-06-17 21:19:11 UTC (rev 4960)
@@ -79,6 +79,7 @@
  */
 typedef struct {
     gchar *name;
+    gchar *devicename;
     /* gchar *description; */
     double raw_value; /* unformatted sensor feature values */
     gchar *formatted_value; /* formatted (%f5.2) sensor feature values */

Modified: xfce4-sensors-plugin/trunk/po/ca.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ca.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/ca.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2006-09-20 13:53+0200\n"
 "Last-Translator: Pau Rul·lan Ferragut <paurullan at bulma.net>\n"
 "Language-Team: Catalan\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -229,11 +229,12 @@
 msgstr "Connector de sensors"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Discs durs"
 
@@ -257,12 +258,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Connector de sensors"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Sensors de temperatura dels discs durs"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -277,12 +278,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/cs.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/cs.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/cs.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2007-12-17 22:25+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -213,11 +213,12 @@
 msgstr "Zásuvný modul senzory"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Pevné disky"
 
@@ -241,11 +242,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Zásuvný modul senzory"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Teploty pevných disků S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, fuzzy, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -270,12 +271,12 @@
 "Volání \"%s\" vrátilo tuto chybu:\n"
 "%s"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/da.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/da.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/da.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-05-21 10:27+0100\n"
 "Last-Translator: Jens Hyllegaard <jens.hyllegaard at gmail.com>\n"
 "Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -27,7 +27,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -211,11 +211,12 @@
 msgstr "Sensor-udvidelsesmodul"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Harddiske"
 
@@ -239,11 +240,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensor-udvidelsesmodul"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. harddisk-temperaturer"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,12 +269,12 @@
 "%s\n"
 "med returkoden %d.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/de.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/de.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/de.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-06-16 21:08+0100\n"
 "Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
 "Language-Team: German <de at li.org>\n"
@@ -28,7 +28,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -211,11 +211,12 @@
 msgstr "Sensorüberwachung"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Festplatten"
 
@@ -238,11 +239,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensorüberwachung für Xfce4"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T.-Sensoren der Festplatten"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,12 +269,12 @@
 "%s\n"
 "mit einem Rückgabewert von %d.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr "Diese Nachricht nicht mehr zeigen"
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/el.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/el.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/el.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2006-10-14 19:59+0200\n"
 "Last-Translator: Stavros Giannouris <stavrosg at serverhive.com>\n"
 "Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -229,11 +229,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Σκληροί δίσκοι"
 
@@ -257,12 +258,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Πρόσθετο αισθητήρων"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Αισθητήρες θερμοκρασίας σκληρών δίσκων"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -277,12 +278,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/en_GB.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/en_GB.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/en_GB.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-05-10 13:31+1000\n"
 "Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
 "Language-Team: English/GB\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -214,11 +214,12 @@
 msgstr "Sensors Plugin"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Hard disks"
 
@@ -242,11 +243,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensors Plugin"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. harddisk temperatures"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -271,12 +272,12 @@
 "%s\n"
 "with a return value of %d.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/eu.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/eu.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/eu.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-05-02 10:59+0200\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Euskara <debian-l10n-basque at lists.debian.org>\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -214,11 +214,12 @@
 msgstr "Sentsore Plugin-a"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Diska Gogorrak"
 
@@ -242,11 +243,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sentsore Plugin-a"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. diska gogor tenperaturak"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -271,12 +272,12 @@
 "%s\n"
 "%d erantzun balioarekin.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/fr.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/fr.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/fr.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2007-10-24 11:46+0100\n"
 "Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -214,11 +214,12 @@
 msgstr "Plugin senseurs"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Disques dur"
 
@@ -242,12 +243,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin senseurs"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Sondes de température du disque dur"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -262,12 +263,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/hu.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/hu.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/hu.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-01-25 22:48+0100\n"
 "Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
 "Language-Team: hu\n"
@@ -25,7 +25,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -209,11 +209,12 @@
 msgstr "Érzékelők"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Merevlemezek"
 
@@ -237,11 +238,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Érzékelők"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. merevlemez hőmérséklet"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -256,12 +257,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/ja.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ja.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/ja.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-05-14 10:48+0200\n"
 "Last-Translator: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>\n"
 "Language-Team: xfce-users-jp <xfce-users-jp at ml.fdiary.net>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "摂氏 %5.1f 度"
@@ -214,11 +214,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "ハードディスク"
 
@@ -242,11 +243,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "センサープラグイン"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. ハードディスク温度"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -269,12 +270,12 @@
 "%s\n"
 "返り値: %d です。\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/ko.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ko.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/ko.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2005-12-11 02:20+0900\n"
 "Last-Translator: ByungHyun Choi <byunghyun.choi at debianusers.org>\n"
 "Language-Team: xfce4-users-kr-i18n <xfce4-users-kr-i18n at lists.sourceforge."
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -219,11 +219,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "하드 디스크"
 
@@ -247,12 +248,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "센서 플러그인"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "하드디스크 온도 센서"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -267,12 +268,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/lt.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/lt.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/lt.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2005-02-04 21:07+0200\n"
 "Last-Translator: Rimas Kudelis <rq at akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -220,11 +220,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr ""
 
@@ -248,12 +249,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensorių tipas:"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Aparatiniai sensoriai"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,12 +269,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/lv.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/lv.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/lv.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: Pxfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2007-11-16 23:56+0300\n"
 "Last-Translator: Rihards Priedītis <rprieditis at inbox.lv>\n"
 "Language-Team: Latvian <rprieditis at inbox.lv>\n"
@@ -28,7 +28,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -212,11 +212,12 @@
 msgstr "Sensoru Spraudnis"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Cietie Diski"
 
@@ -240,11 +241,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensoru Spraudnis"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. cietā diska temperatūras"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -259,12 +260,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/pl.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pl.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/pl.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2006-04-08 13:17+0900\n"
 "Last-Translator: Piotr Maliński <admin at rk.edu.pl>\n"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -30,7 +30,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -229,11 +229,12 @@
 msgstr "Wtyczka Czujników"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Dyski twarde"
 
@@ -257,12 +258,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Wtyczka Czujników"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Czujniki temperatury dysku"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -277,12 +278,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/pt_BR.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pt_BR.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/pt_BR.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-06-16 18:31-0500\n"
 "Last-Translator: Og Maciel <ogmaciel at gnome.org>\n"
 "Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\n"
@@ -18,8 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/sensors.c:204
-#: ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensores</b></span>"
 
@@ -32,8 +31,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562
-#: ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -67,8 +65,7 @@
 
 #. FIXME: either print nothing, or undertake appropriate action,
 #. * or pop up a message box.
-#: ../panel-plugin/sensors.c:651
-#: ../panel-plugin/sensors.c:1162
+#: ../panel-plugin/sensors.c:651 ../panel-plugin/sensors.c:1162
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -212,25 +209,21 @@
 msgid "Edit Properties"
 msgstr "Editar Propriedades"
 
-#: ../panel-plugin/sensors.c:2232
-#: ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
 msgid "Sensors Plugin"
 msgstr "Plug-in de Sensores"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139
-#: ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320
-#: ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263
-#: ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
-#: ../panel-plugin/acpi.c:409
-#: ../panel-plugin/acpi.c:417
+#: ../panel-plugin/acpi.c:409 ../panel-plugin/acpi.c:417
 msgid "ACPI"
 msgstr "ACPI"
 
@@ -249,35 +242,42 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plug-in de sensores do Xfce"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Temperatura do disco rígido S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, 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 ""
-"O \"hddtemp\" não foi executado corretamente, apesar de ser executável. Isto é devido provavelmente ao disco necessitando de privilégios de root para fazer leitura de suas temperaturas, e o \"hddtemp\" não foi configurado com setuid de root.\n"
+"O \"hddtemp\" não foi executado corretamente, apesar de ser executável. Isto "
+"é devido provavelmente ao disco necessitando de privilégios de root para "
+"fazer leitura de suas temperaturas, e o \"hddtemp\" não foi configurado com "
+"setuid de root.\n"
 "\n"
-"Um jeito fácil de resolver isso é executar \"chmod u+s %s\" como usuário root e reiniciar este plug-in ou seu painel.\n"
+"Um jeito fácil de resolver isso é executar \"chmod u+s %s\" como usuário "
+"root e reiniciar este plug-in ou seu painel.\n"
 "\n"
 "Chamando \"%s\" apresentou o seguinte erro:\n"
 "%s\n"
 "com um valor de retorno de %d.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr "Suprimir esta mensagem no futuro"
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -290,8 +290,7 @@
 msgid "LM Sensors"
 msgstr "Tipos de Sensores"
 
-#: ../panel-plugin/lmsensors.c:335
-#: ../panel-plugin/lmsensors.c:382
+#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Erro: Não foi possível conectar-se aos sensores!"
@@ -306,10 +305,12 @@
 
 #~ msgid "Advanced Configuration and Power Interface"
 #~ msgstr "Advanced Configuration and Power Interface"
+
 #~ msgid "<b>Sensors</b>"
 #~ msgstr "<b>Sensores</b>"
+
 #~ msgid "<span foreground=\"#000000\" size=\"%s\"><b>Sensors</b></span>\n"
 #~ msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Sensores</b></span>\n"
+
 #~ msgid "<b>View</b>"
 #~ msgstr "<b>Ver</b>"
-

Modified: xfce4-sensors-plugin/trunk/po/pt_PT.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pt_PT.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/pt_PT.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2008-03-01 21:09+0100\n"
 "Last-Translator: Nuno Miguel <nunis at netcabo.pt>\n"
 "Language-Team: \n"
@@ -28,7 +28,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr "%5.1f °C"
@@ -212,11 +212,12 @@
 msgstr "Sensors Plugin"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
@@ -240,11 +241,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensors Plugin"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Temperatura do disco rígido S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -269,12 +270,12 @@
 "%s\n"
 "com um retorno de erro de %d.\n"
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/ru.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ru.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/ru.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2006-04-09 17:07+0600\n"
 "Last-Translator: Andrey Fedoseev <andrey.fedoseev at gmail.com>\n"
 "Language-Team: Russian <ru at li.org>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -224,11 +224,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr ""
 
@@ -252,11 +253,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Сенсоры"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -271,12 +272,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/sq.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/sq.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/sq.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2007-01-30 21:21+0200\n"
 "Last-Translator: Besnik Bleta <besnik at programeshqip.org>\n"
 "Language-Team: Albanian <translation-team-sq at lists.sourceforge.net>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -228,11 +228,12 @@
 msgstr "Shtojcë Ndijuesish"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "Hard disqe"
 
@@ -256,12 +257,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Shtojcë Ndijuesish"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Nidjuesa temperature hard disku"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -276,12 +277,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/ur.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ur.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/ur.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2007-10-27 16:37+0500\n"
 "Last-Translator: Muhammad Ali Makki <makk.ma at gmail.com>\n"
 "Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -32,7 +32,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -229,11 +229,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr "ہارڈ ڈسکس"
 
@@ -257,12 +258,12 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "سینسرز پلگ ان"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "ہارڈ ڈسک ٹمپریچر سینسرز"
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -277,12 +278,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/vi.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/vi.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/vi.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\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"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -228,11 +228,12 @@
 msgstr "Plugin cảm ứng"
 
 #. 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr ""
 
@@ -256,11 +257,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin cảm ứng"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -275,12 +276,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot
===================================================================
--- xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot	2008-06-17 21:19:11 UTC (rev 4960)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\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"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -209,11 +209,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr ""
 
@@ -236,11 +237,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -255,12 +256,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"

Modified: xfce4-sensors-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/zh_TW.po	2008-06-17 19:54:52 UTC (rev 4959)
+++ xfce4-sensors-plugin/trunk/po/zh_TW.po	2008-06-17 21:19:11 UTC (rev 4960)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-16 23:23+0200\n"
+"POT-Creation-Date: 2008-06-17 23:22+0200\n"
 "PO-Revision-Date: 2006-06-26 22:37+0800\n"
 "Last-Translator: Hydonsingore Cia <hydonsingore at educities.edu.tw>\n"
 "Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
@@ -29,7 +29,7 @@
 #. if (scale == FAHRENHEIT) {
 #. cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
 #. } else { // Celsius
-#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:422
+#: ../panel-plugin/sensors.c:562 ../panel-plugin/hddtemp.c:426
 #, c-format
 msgid "%5.1f °C"
 msgstr ""
@@ -228,11 +228,12 @@
 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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:139 ../panel-plugin/configuration.c:314
-#: ../panel-plugin/configuration.c:320 ../panel-plugin/hddtemp.c:224
-#: ../panel-plugin/hddtemp.c:263 ../panel-plugin/hddtemp.c:268
+#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
+#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:226
+#: ../panel-plugin/hddtemp.c:267 ../panel-plugin/hddtemp.c:272
 msgid "Hard disks"
 msgstr ""
 
@@ -256,11 +257,11 @@
 msgid "Xfce 4 Sensors Plugin"
 msgstr "感測器外掛程式"
 
-#: ../panel-plugin/hddtemp.c:267
+#: ../panel-plugin/hddtemp.c:271
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:346
+#: ../panel-plugin/hddtemp.c:350
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -275,12 +276,12 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:356
+#: ../panel-plugin/hddtemp.c:360
 msgid "Suppress this message in future"
 msgstr ""
 
 #. DBG  ("error %s\n", error->message);
-#: ../panel-plugin/hddtemp.c:376
+#: ../panel-plugin/hddtemp.c:380
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"




More information about the Goodies-commits mailing list