[Goodies-commits] r5743 - in xfce4-sensors-plugin/trunk: . lib panel-plugin po

Fabian Nowak timystery at xfce.org
Wed Oct 22 01:07:51 CEST 2008


Author: timystery
Date: 2008-10-21 23:07:51 +0000 (Tue, 21 Oct 2008)
New Revision: 5743

Modified:
   xfce4-sensors-plugin/trunk/ChangeLog
   xfce4-sensors-plugin/trunk/TODO
   xfce4-sensors-plugin/trunk/lib/hddtemp.c
   xfce4-sensors-plugin/trunk/lib/sensors-interface-common.c
   xfce4-sensors-plugin/trunk/lib/sensors-interface.c
   xfce4-sensors-plugin/trunk/panel-plugin/sensors-plugin.c
   xfce4-sensors-plugin/trunk/po/POTFILES.in
   xfce4-sensors-plugin/trunk/po/ar.po
   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/gl.po
   xfce4-sensors-plugin/trunk/po/hu.po
   xfce4-sensors-plugin/trunk/po/id.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/uk.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 tooltip onto sensors items list: "You can change values, names and
   colours by double-clicking the entry, editing the content, and pressing
    ?\194?\187Return?\194?\171 or selecting a different field."
  * Introduced separate handling of text labels for vertically aligned panels
  * aligned text label centered when being in vertical panels
  * Updated German translation
  * Changed order how clicks in the settings dialog are handled --
   remove old widget, update value, rebuild widget
  * added own xfce4-sensors application to be used instead of xsensors
  * split functionality into panel plugin, library and application
  * began using libnotify for error messages where available
  * introduced checking for netcat/nc to be used as a replacement for hddtemp


Modified: xfce4-sensors-plugin/trunk/ChangeLog
===================================================================
--- xfce4-sensors-plugin/trunk/ChangeLog	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/ChangeLog	2008-10-21 23:07:51 UTC (rev 5743)
@@ -1,12 +1,28 @@
+2008-10-21 timystery
+  * Added tooltip onto sensors items list: "You can change values, names and
+   colours by double-clicking the entry, editing the content, and pressing
+    »Return« or selecting a different field."
+  * Introduced separate handling of text labels for vertically aligned panels
+  * aligned text label centered when being in vertical panels
+  * Updated German translation
+  * Changed order how clicks in the settings dialog are handled --
+   remove old widget, update value, rebuild widget
+
+2008-10-19 timystery
+  * added own xfce4-sensors application to be used instead of xsensors
+  * split functionality into panel plugin, library and application
+  * began using libnotify for error messages where available
+  * introduced checking for netcat/nc to be used as a replacement for hddtemp
+
 2008-06-26 timystery
-	* also offer suppress-checkbox in other failure dialogs
-	* changed conditions for hddtemp error checking to check for valid pointer
-	as well
+    * also offer suppress-checkbox in other failure dialogs
+    * changed conditions for hddtemp error checking to check for valid pointer
+    as well
 
 2008-06-20/21 timystery
-	* renaming of hddtemp and acpi features available
-	* whitelist for sd and hd disks only
-	* Update of German translation
+    * renaming of hddtemp and acpi features available
+    * whitelist for sd and hd disks only
+    * Update of German translation
 
 2008-06-16 timystery
     * added switch to suppress hddtemp error dialog

Modified: xfce4-sensors-plugin/trunk/TODO
===================================================================
--- xfce4-sensors-plugin/trunk/TODO	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/TODO	2008-10-21 23:07:51 UTC (rev 5743)
@@ -1,9 +1,6 @@
 TODO
 ======
 
-
-- Add tooltip onto sensors items list: "You can change values, names and colours by double-clicking the entry, editing the content, and pressing »Return« or selecting a different field."
-
 - Use notfication messages when alert is on; when maximum is reached.
 
 - fix error: doesn't find all sensors when newly adding plugin to panel - sensors library problem?

Modified: xfce4-sensors-plugin/trunk/lib/hddtemp.c
===================================================================
--- xfce4-sensors-plugin/trunk/lib/hddtemp.c	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/lib/hddtemp.c	2008-10-21 23:07:51 UTC (rev 5743)
@@ -476,9 +476,9 @@
     /* actually, that's done in the gui part */
     g_free (cf->formatted_value);
     /*  if (scale == FAHRENHEIT) {
-        cf->formatted_value = g_strdup_printf(_("%5.1f °F"), (float) (value * 9/5 + 32) );
+        cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
     } else { // Celsius  */
-        cf->formatted_value = g_strdup_printf(_("%5.1f °C"), value);
+        cf->formatted_value = g_strdup_printf(_("%.1f °C"), value);
     /* } */
     cf->raw_value = value;
 

Modified: xfce4-sensors-plugin/trunk/lib/sensors-interface-common.c
===================================================================
--- xfce4-sensors-plugin/trunk/lib/sensors-interface-common.c	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/lib/sensors-interface-common.c	2008-10-21 23:07:51 UTC (rev 5743)
@@ -131,15 +131,15 @@
     switch (chipfeature->class) {
         case TEMPERATURE:
            if (scale == FAHRENHEIT) {
-                *help = g_strdup_printf(_("%5.1f °F"),
+                *help = g_strdup_printf(_("%.1f °F"),
                             (float) (sensorFeature * 9/5 + 32) );
            } else { /* Celsius */
-                *help = g_strdup_printf(_("%5.1f °C"), sensorFeature);
+                *help = g_strdup_printf(_("%.1f °C"), sensorFeature);
            }
            break;
 
         case VOLTAGE:
-               *help = g_strdup_printf(_("%+5.2f V"), sensorFeature);
+               *help = g_strdup_printf(_("%+.2f V"), sensorFeature);
                break;
 
         case ENERGY:
@@ -154,11 +154,11 @@
                break;
 
         case SPEED:
-               *help = g_strdup_printf(_("%5.0f rpm"), sensorFeature);
+               *help = g_strdup_printf(_("%.0f rpm"), sensorFeature);
                break;
 
         default:
-                *help = g_strdup_printf("%+5.2f", sensorFeature);
+                *help = g_strdup_printf("%+.2f", sensorFeature);
                break;
     } /* end switch */
 

Modified: xfce4-sensors-plugin/trunk/lib/sensors-interface.c
===================================================================
--- xfce4-sensors-plugin/trunk/lib/sensors-interface.c	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/lib/sensors-interface.c	2008-10-21 23:07:51 UTC (rev 5743)
@@ -39,6 +39,12 @@
 #include <middlelayer.h>
 
 
+/*
+ * Tooltips to display for any part of this plugin
+ */
+GtkTooltips *tooltips = NULL;
+
+
 void
 fill_gtkTreeStore (GtkTreeStore *model, t_chip *chip, t_tempscale scale)
 {

Modified: xfce4-sensors-plugin/trunk/panel-plugin/sensors-plugin.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/sensors-plugin.c	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/panel-plugin/sensors-plugin.c	2008-10-21 23:07:51 UTC (rev 5743)
@@ -55,7 +55,7 @@
 /*
  * Tooltips to display for any part of this plugin
  */
-static GtkTooltips *tooltips = NULL;
+extern GtkTooltips *tooltips;
 
 
 static void
@@ -150,7 +150,7 @@
             if (chipfeature->show == TRUE) {
                 panel = (t_barpanel*) sensors->panels[chipNum][feature];
 
-        if (sensors->show_labels == TRUE)
+        if (sensors->show_labels == TRUE) /* FN: FIXME; this value is already updated! */
                     gtk_widget_destroy (panel->label);
 
                 gtk_widget_destroy (panel->progressbar);
@@ -474,7 +474,11 @@
 
                 myLabelText = tmpstring;
 
-                if (currentColumn < numCols-1) {
+                if (sensors->orientation == GTK_ORIENTATION_VERTICAL) {
+                    if (itemsToDisplay > 1)
+                        myLabelText = g_strconcat (myLabelText, "\n", NULL);
+                }
+                else if (currentColumn < numCols-1) {
                     if (sensors->show_smallspacings)
                         myLabelText = g_strconcat (myLabelText, "  ", NULL);
                     else
@@ -497,7 +501,11 @@
         g_free(myLabelText);
     /* else: with sprintf, we cannot free the string. how bad. */
 
-    gtk_misc_set_alignment(GTK_MISC(sensors->panel_label_data), 0.0, 0.5);
+    if (sensors->orientation== GTK_ORIENTATION_HORIZONTAL)
+        gtk_misc_set_alignment(GTK_MISC(sensors->panel_label_data), 0.0, 0.5);
+    else
+        gtk_misc_set_alignment(GTK_MISC(sensors->panel_label_data), 0.5, 0.5);
+
     gtk_widget_show (sensors->panel_label_data);
 
     TRACE ("leaves sensors_set_text_panel_label");
@@ -886,11 +894,12 @@
 {
     TRACE ("enters show_title_toggled");
 
-    sd->sensors->show_title = gtk_toggle_button_get_active
-        ( GTK_TOGGLE_BUTTON(widget) );
     if (sd->sensors->display_values_graphically == TRUE) {
         sensors_remove_graphical_panel(sd->sensors);
     }
+    sd->sensors->show_title = gtk_toggle_button_get_active
+        ( GTK_TOGGLE_BUTTON(widget) );
+
     sensors_show_panel ((gpointer) sd->sensors);
 
     TRACE ("leaves show_title_toggled");
@@ -902,11 +911,13 @@
 {
     TRACE ("enters show_labels_toggled");
 
-    sd->sensors->show_labels = gtk_toggle_button_get_active
-        ( GTK_TOGGLE_BUTTON(widget) );
     if (sd->sensors->display_values_graphically == TRUE) {
         sensors_remove_graphical_panel(sd->sensors);
     }
+
+    sd->sensors->show_labels = gtk_toggle_button_get_active
+        ( GTK_TOGGLE_BUTTON(widget) );
+
     sensors_show_panel ((gpointer) sd->sensors);
 
     TRACE ("leaves show_labels_toggled");
@@ -917,11 +928,13 @@
 {
     TRACE ("enters show_colored_bars_toggled");
 
-    sd->sensors->show_colored_bars = gtk_toggle_button_get_active
-        ( GTK_TOGGLE_BUTTON(widget) );
     if (sd->sensors->display_values_graphically == TRUE) {
         sensors_remove_graphical_panel(sd->sensors);
     }
+
+    sd->sensors->show_colored_bars = gtk_toggle_button_get_active
+        ( GTK_TOGGLE_BUTTON(widget) );
+
     sensors_show_panel ((gpointer) sd->sensors);
 
     TRACE ("leaves show_colored_bars_toggled");
@@ -1791,6 +1804,7 @@
 {
     GtkWidget *dlg, *header, *vbox, *notebook;
     t_sensors_dialog *sd;
+    gchar *myToolTipText;
 
     TRACE ("enters sensors_create_options");
 
@@ -1829,6 +1843,15 @@
     gtk_widget_show(notebook);
 
     add_sensors_frame (notebook, sd);
+
+    if (!tooltips)
+      tooltips = gtk_tooltips_new();
+
+    /* #if GTK_VERSION < 2.11 */
+    myToolTipText = g_strdup(_("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.."));
+    gtk_tooltips_set_tip (tooltips, GTK_WIDGET(sd->myTreeView),
+                          myToolTipText, NULL);
+    g_free (myToolTipText);
     /* g_signal_connect (G_OBJECT (sd->myComboBox), "changed",
                       //G_CALLBACK (sensor_entry_changed), sd ); */
 

Modified: xfce4-sensors-plugin/trunk/po/POTFILES.in
===================================================================
--- xfce4-sensors-plugin/trunk/po/POTFILES.in	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/POTFILES.in	2008-10-21 23:07:51 UTC (rev 5743)
@@ -5,6 +5,8 @@
 lib/hddtemp.c
 lib/lmsensors.c
 lib/middlelayer.c
+lib/sensors-interface.c
+lib/sensors-interface-common.c
 src/main.c
 src/interface.c
 src/callbacks.c

Modified: xfce4-sensors-plugin/trunk/po/ar.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ar.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ar.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: xfce\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-15 23:18+0200\n"
 "Last-Translator: Mohamed Magdy <mohamedmk at gmail.com>\n"
 "Language-Team: Arabeyes <doc at arabeyes.org>\n"
@@ -11,54 +11,17 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Language: Arabic\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr ""
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -66,177 +29,133 @@
 "Proper proceeding cannot be guaranteed.\n"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr ""
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr ""
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -251,26 +170,155 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr ""
 
+#: ../lib/sensors-interface.c:63
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+
+#: ../lib/sensors-interface.c:131
+msgid "Sensors t_ype:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr ""
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr ""
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr ""
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr ""
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr ""
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr ""
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr ""
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr ""
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, c-format
+msgid "%.0f rpm"
+msgstr ""
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+msgid "Xfce 4 Sensors Viewer"
+msgstr ""
+
+#: ../src/interface.c:52
+msgid "View sensor values"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+msgid "Sensors Viewer"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+msgid "Xfce 4 Sensors"
+msgstr ""
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr ""

Modified: xfce4-sensors-plugin/trunk/po/ca.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ca.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ca.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -16,55 +16,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Sensors</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "No s’ha seleccionat cap sensor"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,194 +39,145 @@
 "S’ha produït un error durant la lectura dels sensors.\n"
 "No es podrà assegurar un bon funcionament.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "No s’han trobat sensors"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Estil de la interfície:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "text"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "gràfic"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Mostra les etiquetes a l’interfície gràfica"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Mostra títol"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Tipus de sensors:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nom"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Valor"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Mostra"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Color"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Mín."
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Màx."
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Mida de la lletra"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "molt petit"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "petit"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "mitjà"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "gran"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "extra gran"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Escala de temperatura:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Mostra títol"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Interval d’actualització (segons):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Executa en fer doble clic:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "Tipus de sensors:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Miscel·lània</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Edita propietats"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Connector de sensors"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Discs durs"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Connector de sensors"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Sensors de temperatura dels discs durs"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -278,27 +192,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Tipus de sensors:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "No s’ha pogut connectar als sensors"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Connector pels sensor de maquinari Xfce:\n"
+"S’ha produït un error durant la lectura dels sensors.\n"
+"No es podrà assegurar un bon funcionament.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Tipus de sensors:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nom"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Valor"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Mostra"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Color"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Mín."
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Màx."
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Escala de temperatura:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Celsius"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "Tipus de sensors:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "No s’han trobat sensors"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Connector de sensors"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Mostra els valors dels sensors"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Tipus de sensors:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Connector de sensors"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/cs.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/cs.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/cs.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-07 19:33+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -16,54 +16,17 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Senzory</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "vypnuto"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "zapnuto"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f otáček za minutu"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Nebyly nalezeny žádné senzory!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -74,177 +37,133 @@
 "Došlo k potížím při čtení hodnoty senzoru. \n"
 "Nelze zaručit správné fungování.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Nebyly nalezeny žádné senzory!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Styl uživatelského rozhraní:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_text"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafický"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Zobrazovat _popisky v grafickém uživatelském rozhraní"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Zobrazit barevné _sloupce"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Zobrazovat titulek"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "T_yp senzorů:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Popis:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Název"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Hodnota"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Zobrazit"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Barva"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Velikost _písma:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-small"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "small"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "medium"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "large"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "x-large"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Rozsah teplot:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "Stupně _Celsia"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "Stupně _Fahrenheita"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Zo_brazovat jednotky"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Malý vodorovný oddělovací prostor"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Potlačit zprávy"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "I_nterval obnovení (sekundy):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "_Spustit při dvojitém kliknutí:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Zobrazit"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Senzory:"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Ostatní"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Upravit vlastnosti"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Zásuvný modul senzory"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Pevné disky"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zóny ACPI v%s"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Neznámý>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Zásuvný modul Senzory pro Xfce 4"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Teploty pevných disků ze systému S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -270,11 +189,11 @@
 "%s\n"
 "with a return value of %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Potlačit budoucí zprávy"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -283,15 +202,153 @@
 "Při spouštění  \"%s\" nastala chyba:\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "Senzory LM:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Chyba: Nelze se připojit k senzorům!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Zásuvný modul Senzory hardwaru pro Xfce: \n"
+"Došlo k potížím při čtení hodnoty senzoru. \n"
+"Nelze zaručit správné fungování.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "T_yp senzorů:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Popis:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Název"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Hodnota"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Zobrazit"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Barva"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Rozsah teplot:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "Stupně _Celsia"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "Stupně _Fahrenheita"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Senzory:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Nebyly nalezeny žádné senzory!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "vypnuto"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "zapnuto"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f otáček za minutu"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Zásuvný modul Senzory pro Xfce 4"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Zobrazovat hodnoty senzorů."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "T_yp senzorů:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Zásuvný modul Senzory pro Xfce 4"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Zásuvný modul senzor"

Modified: xfce4-sensors-plugin/trunk/po/da.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/da.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/da.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.10.99.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-10-10 08:35+0100\n"
 "Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
 "Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -18,54 +18,17 @@
 "X-Poedit-Country: DENMARK\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensorer</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "slukket"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "tændt"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f o/m."
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Ingen sensorer valgt!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,177 +39,133 @@
 "Det lader til, at der var et problem med at læse en sensorværdi.\n"
 "Korrekt viderebehandling kan ikke garanteres.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Ingen sensorer fundet!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Grafisk brugerfladestil:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_tekst"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafisk"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Vis _mærkater i grafisk brugerflade"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Vis farvede _bjælker"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "Vi_s titel"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Sensor_type:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Beskrivelse:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Navn"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Værdi"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Vis"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Farve"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min."
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Maks."
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "_Skrifttypestørrelse:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "ekstra lille"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "lille"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "mellem"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "stor"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "ekstra stor"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Temperaturskala:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Vis _enheder"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Små horisontale _mellemrum"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Undertryk beskeder"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "O_pdateringsinterval (sekunder):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "Kø_r ved dobbeltklik:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Vis"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensorer"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Diverse"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Redigér egenskaber"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Udvidelsesmodul for sensorer"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Harddiske"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zoner"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Ukendt>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Xfce 4 udvidelsesmodul for sensorer"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. harddisk-temperaturer"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -271,11 +190,11 @@
 "%s\n"
 "med returkoden %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Undertryk denne besked for fremtiden"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -284,15 +203,153 @@
 "Der opstod en fejl ved kørsel af \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM-sensorer"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Fejl: Kunne ikke forbinde til sensorer!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Udvidelsesmodul for Xfce-hardwaresensorer:\n"
+"Det lader til, at der var et problem med at læse en sensorværdi.\n"
+"Korrekt viderebehandling kan ikke garanteres.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Sensor_type:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Beskrivelse:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Navn"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Værdi"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Vis"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Farve"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min."
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Maks."
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Temperaturskala:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensorer"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Ingen sensorer fundet!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "slukket"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "tændt"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f o/m."
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Xfce 4 udvidelsesmodul for sensorer"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Vis sensorværdier."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Sensor_type:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Xfce 4 udvidelsesmodul for sensorer"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sensor-udvidelsesmodul "

Modified: xfce4-sensors-plugin/trunk/po/de.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/de.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/de.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,62 +7,25 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
-"PO-Revision-Date: 2008-06-16 21:08+0100\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
+"PO-Revision-Date: 2008-10-21 22:35+0200\n"
 "Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
 "Language-Team: German <de at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensoren</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "aus"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "an"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f U/min"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Keine Sensoren ausgewählt!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -73,177 +36,136 @@
 "Anscheinend gab es ein Problem beim Auslesen eines Wertes.\n"
 "Sauberes Weiterlaufen kann nicht gewährleistet werden.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Keine Sensoren gefunden!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Darstellung:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_textuell"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "_graphisch"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "_Beschriftungen im graphischen Modus anzeigen"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Bal_ken farbig darstellen"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "T_itel anzeigen"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Sensort_yp:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Beschreibung:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Name"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Wert"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Anzeigen"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Farbe"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Sc_hriftgröße:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "extra-klein"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "klein"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "normal"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "groß"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "extra-groß"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Temperaturskala"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "C_elsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "_Einheiten anzeigen"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "K_leine horizontale Abstände"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Nachrichtendialoge unterbinden"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "A_uffrischungsintervall (Sekunden):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "Bei _Doppelklick ausführen:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Aussehen"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensoren"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "S_onstige Einstellungen"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Eigenschaften einstellen"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Sensorüberwachung"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 ""
+"Die Eigenschaften eines Merkmals wie Name, Farbe, Minimum/Maximum können "
+"verändert werden, indem man den Eintrag doppelklickt, den Inhalt ändert und "
+"»Return« drückt oder ein anderes Feld wählt."
+
 #. 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:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Festplatten"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Unbekannt>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensorüberwachung für Xfce4"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T.-Sensoren der Festplatten"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -269,11 +191,11 @@
 "%s\n"
 "mit einem Rückgabewert von %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Diese Nachricht nicht mehr zeigen"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -282,15 +204,154 @@
 "Ein Fehler hat sich beim Ausführen von »%s« ereignet:\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr "%.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM-Sensoren"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Fehler: Konnte nicht mit Sensoren verbinden!"
 
+#: ../lib/sensors-interface.c:63
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Anscheinend gab es ein Problem beim Auslesen eines Wertes.\n"
+"Sauberes Weiterlaufen kann nicht gewährleistet werden."
+
+#: ../lib/sensors-interface.c:131
+msgid "Sensors t_ype:"
+msgstr "Sensort_yp"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Beschreibung:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Name"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Wert"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Anzeigen"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Farbe"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Temperaturskala"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "C_elsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensoren"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Keine Sensoren gefunden!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr "%.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr "%+.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "aus"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "an"
+
+#: ../lib/sensors-interface-common.c:157
+#, c-format
+msgid "%.0f rpm"
+msgstr "%.0f U/min"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+"Xfce4-Sensoren %s\n"
+"Zeigt Informationen über Ihre Sensorchips und ACPI.\n"
+"Aufrug: \n"
+"  xfce4-sensors <optionen>\n"
+"wobei <optionen> eine oder mehrere der folgenden ist:\n"
+"  -h, --help Diesen Hilfedialog anzeigen\n"
+"\n"
+"Dieses Programm ist unter der GPL v2 veröffentlicht.\n"
+
+#. start and populate
+#: ../src/interface.c:45
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Sensorbetrachter für Xfce4"
+
+#: ../src/interface.c:52
+msgid "View sensor values"
+msgstr "Sensorwerte betrachten"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr "Grafischer Betrachter für Sensorwerte unter Xfce 4"
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+msgid "Sensors Viewer"
+msgstr "Sensorbetrachter"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+msgid "Xfce 4 Sensors"
+msgstr "Xfce4-Sensoren"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sensor-Plugin"
@@ -299,6 +360,13 @@
 msgid "Show sensor values."
 msgstr "Sensorwerte erkannter Sensoren überwachen."
 
+#~ msgid ""
+#~ "You can modify most of a feature's properties, i.e name, color, and min/"
+#~ "max values."
+#~ msgstr ""
+#~ "Die meisten Eigenschaften eines Merkmals lassen sich anpassen, wie z.B. "
+#~ "Name, Farbe und Minimum/Maximum."
+
 #~ msgid "Advanced Configuration and Power Interface"
 #~ msgstr "Erweiterte Konfigurations- und Stromschnittstelle"
 

Modified: xfce4-sensors-plugin/trunk/po/el.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/el.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/el.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -16,55 +16,18 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Country: GREECE\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Αισθητήρες</b></span> \n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Δεν επιλέχθηκαν αισθητήρες!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,194 +39,145 @@
 "Από οτι φαίνεται υπήρξε πρόβλημα κατά την ανάγνωση κάποιου αισθητήρα. \n"
 "Δεν είναι εγγυημένη η κανονική συνέχεια.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Δε βρέθηκαν αισθητήρες!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Στυλ UI:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "κείμενο"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "γραφικό"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Εμφάνιση ετικετών σε γραφικό UI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Εμφάνιση τίτλου"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Τύπος αισθητήρα:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Όνομα"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Τιμή"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Εμφάνιση"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Χρώμα"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Ελαχ"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Μεγ"
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Μέγεθος γραμματοσειράς:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "πολύ μικρό"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "Μικρό"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "μεσαίο"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "μεγάλο"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "πολύ μεγάλο"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Κλίμακα θερμοκρασίας:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "Κελσίου"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "Φαρενάϊτ"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Εμφάνιση τίτλου"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Διάστημα ανανέωσης (δευτερόλεπτα):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Εκτέλεση στο διπλό κλικ:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "Τύπος αισθητήρα:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Διάφορα</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Ιδιότητες"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Πρόσθετο αισθητήρων"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Σκληροί δίσκοι"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Πρόσθετο αισθητήρων"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Αισθητήρες θερμοκρασίας σκληρών δίσκων"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -278,27 +192,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Τύπος αισθητήρα:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Σφάλμα: Δεν ήταν δυνατή η σύνδεση με τους αισθητήρες!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Xfce Hardware Sensors Plugin: \n"
+"Από οτι φαίνεται υπήρξε πρόβλημα κατά την ανάγνωση κάποιου αισθητήρα. \n"
+"Δεν είναι εγγυημένη η κανονική συνέχεια.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Τύπος αισθητήρα:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Όνομα"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Τιμή"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Εμφάνιση"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Χρώμα"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Ελαχ"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Μεγ"
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Κλίμακα θερμοκρασίας:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Κελσίου"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "Φαρενάϊτ"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "Τύπος αισθητήρα:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Δε βρέθηκαν αισθητήρες!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Πρόσθετο αισθητήρων"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Εμφάνιση τιμών αισθητήρων."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Τύπος αισθητήρα:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Πρόσθετο αισθητήρων"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/en_GB.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/en_GB.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/en_GB.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -17,54 +17,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensors</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "off"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "on"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "No sensors selected!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,179 +38,135 @@
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "No sensors found!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "UI style:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_text"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_raphical"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Show _labels in graphical UI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Show coloured _bars"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Show title"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Sensors t_ype:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Name"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Value"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Show"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Colour"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "F_ont size:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-small"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "small"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "medium"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "large"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "x-large"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Temperature scale:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
 msgid "Show _Units"
 msgstr "_Show title"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "U_pdate interval (seconds):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "E_xecute on double click:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_View"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensors"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Miscellaneous"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Edit Properties"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Sensors Plugin"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Hard disks"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zones"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Unknown>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensors Plugin"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. harddisk temperatures"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -272,11 +191,11 @@
 "%s\n"
 "with a return value of %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -285,15 +204,153 @@
 "An error occurred when executing \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM Sensors"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Error: Could not connect to sensors!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce Hardware Sensors Plugin:\n"
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Sensors t_ype:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Name"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Value"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Show"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Colour"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Temperature scale:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensors"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "No sensors found!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "off"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "on"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Sensors Plugin"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Show sensor values."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Sensors t_ype:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Sensors Plugin"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/eu.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/eu.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/eu.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-09-11 22:18+0200\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Euskara <debian-l10n-basque at lists.debian.org>\n"
@@ -17,54 +17,17 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sentsoreak</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "itzalia"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "aktibo"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f b/min"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Ez da sentsorerik hautatu!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,177 +38,133 @@
 "Dirudienez arazo bat dago sentsore ezaugarri balioa irakurtzerakoan. \n"
 "Ezin da behar ebazlea ibiliko den ziurtatu.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Ez da sentsorerik aurkitu!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "UI estiloa:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_testua"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafikoa"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "_Etitketa bistarazi UI grafikoan"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Koloretako _barrak ikusi"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Izenburua ikusi"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Sentsore m_ota:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Azalpena:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Izena"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Balioa"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Bistarazi"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Kolorea"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Gutx"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Geh"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Letra-tip_o tamaina:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "oso txikia"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "txikia"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "ertaina"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "handia"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "oso handia"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Tenperatura eskala:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Ikusi _unitateak"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Ikusi _zuriune horizontala"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Ezabatu mezuak"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "Egunera_keta aldia (segundu):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "Klik bikoitzarekin e_xekutatu:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Ikusi"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sentsoreak"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Bestelakoak"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Editatu propietateak"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Sentsore Plugin-a"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Diska Gogorrak"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI %sb zonaldeak"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Ezezaguna>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Xfce 4 sentsore plugin-a"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. diska gogor tenperaturak"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -270,11 +189,11 @@
 "%s\n"
 "%d erantzun balioarekin.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Ez erakutsi mezu hau aurrerantzean"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -283,15 +202,153 @@
 "Errore bat gertatu da \"%s\" exekutatzean:\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM sentsoreak"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Errorea: Ezin da sentsoreetara konektatu!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce Hardware Sentsore Plugin-a: \n"
+"Dirudienez arazo bat dago sentsore ezaugarri balioa irakurtzerakoan. \n"
+"Ezin da behar ebazlea ibiliko den ziurtatu.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Sentsore m_ota:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Azalpena:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Izena"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Balioa"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Bistarazi"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Kolorea"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Gutx"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Geh"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Tenperatura eskala:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sentsoreak"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Ez da sentsorerik aurkitu!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "itzalia"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "aktibo"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f b/min"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Xfce 4 sentsore plugin-a"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Sentsore balioak bistarazi."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Sentsore m_ota:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Xfce 4 sentsore plugin-a"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sentsore plugin-a "

Modified: xfce4-sensors-plugin/trunk/po/fr.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/fr.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/fr.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -17,54 +17,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Senseurs</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Aucun senseur sélectionné !"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,180 +38,136 @@
 "Il semblerait qu'il y ait un problème de lecture de valeur sur un senseur.\n"
 "L'exécution normale ne peut pas être garantie.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Aucun senseur trouvé !"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Style de l'interface :"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_texte"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_raphique"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Affic_her les étiquettes dans l'interface graphique"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Afficher les _barres en couleur"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "Affi_cher le titre"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "T_ype de senseurs :"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nom"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Valeur"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Afficher"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Couleur"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Taille de la _police :"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "très petite"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "petite"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "normale"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "grande"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "très grande"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Échelle de température :"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
 msgid "Show _Units"
 msgstr "Affi_cher le titre"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "_Intervalle de mise-à-jour (secondes) :"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "E_xécute après un double clic :"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Afficher"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Senseurs"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Divers"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Ajouter propriétés"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Plugin senseurs"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Disques dur"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin senseurs"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Sondes de température du disque dur"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -263,27 +182,165 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Senseurs"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Erreur : ne peut pas se connecter aux senseurs !"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce Greffon de Senseur Matériel :\n"
+"Il semblerait qu'il y ait un problème de lecture de valeur sur un senseur.\n"
+"L'exécution normale ne peut pas être garantie.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "T_ype de senseurs :"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nom"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Valeur"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Afficher"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Couleur"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Échelle de température :"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Senseurs"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Aucun senseur trouvé !"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Plugin senseurs"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Afficher les valeurs du senseur."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "T_ype de senseurs :"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Plugin senseurs"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/gl.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/gl.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/gl.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-06-24 20:04+0100\n"
 "Last-Translator: Leandro Regueiro <leandro DOT regueiro AT gmail DOT com>\n"
 "Language-Team: Galician <proxecto at trasno.net>\n"
@@ -20,54 +20,17 @@
 "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-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr ""
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,177 +38,133 @@
 "Proper proceeding cannot be guaranteed.\n"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nome"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Valor"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Cor"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr ""
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr ""
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Discos duros"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -260,26 +179,155 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr ""
 
+#: ../lib/sensors-interface.c:63
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+
+#: ../lib/sensors-interface.c:131
+msgid "Sensors t_ype:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nome"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Valor"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr ""
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Cor"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr ""
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr ""
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+msgid "Xfce 4 Sensors Viewer"
+msgstr ""
+
+#: ../src/interface.c:52
+msgid "View sensor values"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+msgid "Sensors Viewer"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+msgid "Xfce 4 Sensors"
+msgstr ""
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr ""

Modified: xfce4-sensors-plugin/trunk/po/hu.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/hu.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/hu.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-11 17:37+0100\n"
 "Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
 "Language-Team: hu\n"
@@ -12,54 +12,17 @@
 "X-Poedit-Language: Hungarian\n"
 "X-Poedit-Country: HUNGARY\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Érzékelők</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "ki"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "be"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Nincsenek érzékelők!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -70,177 +33,133 @@
 "Úgy tűnik, gond van egy érzékelő értékeinek kiolvasásával. \n"
 "A helyes működés nem szavatolt.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Nem leltem érzékelőket!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "UI stílus:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "s_zöveg"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafikus"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Címkék a grafikus UI-ben"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Színes sá_vok mutatása"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "Cím mutatá_sa"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Érzékelők tí_pusa:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Leírás:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Név"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Érték"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Megjelenítés"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Szín"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "_Betű mérete:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "törpe"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "kicsi"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "közepes"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "nagy"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "óriás"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Hőfok skála:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Egységek mutatása"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Kis vízszintes térközök"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Üzenetek rejtése"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "Frissítési időközök (másodpercben):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "Futtatás dupla kattintásra:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Nézet"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "Érzékelők"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "Egyebek"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Tulajdonságok szerkesztése"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Érzékelők"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Merevlemezek"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s zónák"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Ismeretlen>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Xfce 4 érzékelő beillesztés"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. merevlemez hőmérséklet"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -255,11 +174,11 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Ezen üzenet rejtése a jövőben"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -268,15 +187,153 @@
 "Hiba történt \"%s\" futtatásakor:\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM érzékelők"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Hiba: nem lehet érzékelőkhöz kapcsolódni!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce Hardver Érzékelő: \n"
+"Úgy tűnik, gond van egy érzékelő értékeinek kiolvasásával. \n"
+"A helyes működés nem szavatolt.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Érzékelők tí_pusa:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Leírás:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Név"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Érték"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Megjelenítés"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Szín"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Hőfok skála:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "Érzékelők"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Nem leltem érzékelőket!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "ki"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "be"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Xfce 4 érzékelő beillesztés"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Szenzor értékek mutatása"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Érzékelők tí_pusa:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Xfce 4 érzékelő beillesztés"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Szenzor plugin"

Modified: xfce4-sensors-plugin/trunk/po/id.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/id.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/id.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-18 22:23+0700\n"
 "Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
 "Language-Team: Indonesian <id at li.org>\n"
@@ -15,54 +15,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensor</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWj"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "padam"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "hidup"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Tak ada sensor yang dipilih!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -73,177 +36,133 @@
 "Kelihatannya terdapat masalah saat membaca nilai fitur sensor.\n"
 "Eksekusi yang normal tidak dijamin.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Tak ada sensor yang ditemukan!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Gaya UI:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_teks"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafik"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Tampilkan _label dalam grafik UI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Tampilkan batang _berwarna"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Tampilkan judul"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Tipe s_ensor:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Keterangan:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nama"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Nilai"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Tampilkan"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Warna"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Maks"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "U_kuran fonta:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "sangat kecil"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "kecil"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "sedang"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "besar"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "sangat besar"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Skala temperatur:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Tampilkan _Unit"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "P_emisah horizontal kecil"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Kecilkan pesan"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "I_nterval pemutakhiran (detik):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "E_ksekusi pada klik ganda:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Tampilan"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensor"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Lainnya"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Sunting Properti"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Plugin Sensor"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Cakram keras"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zona v%s ACPI"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Tak diketahui>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin Sensor Xfce 4"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Temperatur cakram keras S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,11 +187,11 @@
 "%s\n"
 "dengan nilai kembali %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Kecilkan pesan ini di masa depan"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -281,15 +200,153 @@
 "Galat terjadi ketika mengeksekusi \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "Sensor LM"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Galat: Tak dapat menghubungi sensor!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Plugin Sensor Peranti Keras Xfce:\n"
+"Kelihatannya terdapat masalah saat membaca nilai fitur sensor.\n"
+"Eksekusi yang normal tidak dijamin.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Tipe s_ensor:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Keterangan:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nama"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Nilai"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Tampilkan"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Warna"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Maks"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Skala temperatur:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensor"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Tak ada sensor yang ditemukan!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWj"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "padam"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "hidup"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Plugin Sensor Xfce 4"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Tampilkan nilai sensor."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Tipe s_ensor:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Plugin Sensor Xfce 4"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Plugin sensor"

Modified: xfce4-sensors-plugin/trunk/po/ja.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ja.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ja.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-10-10 03:47+0900\n"
 "Last-Translator: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>\n"
 "Language-Team: xfce-users-jp <xfce-users-jp at ml.fdiary.net>\n"
@@ -16,54 +16,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>センサー</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "華氏 %5.1f 度"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "摂氏 %5.1f 度"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "オフ"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "オン"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "センサーが選択されていません!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -74,177 +37,133 @@
 "センサーの機能値の読み込みに問題があるようです。 \n"
 "正確な値は保証されません。\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "センサーが見つかりません!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "UIのスタイル:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "テキスト(_t)"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "グラフィック(_r)"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "グラフィック UI にラベルを表示する(_l)"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "色付けされたバーを表示する(_b)"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "タイトルを表示する(_S)"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "センサーの種類(_y):"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "説明:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "名前"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "値"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "表示"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "色"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "最小"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "最大"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "フォントのサイズ(_o):"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "極小"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "小"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "普通"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "大"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "巨大"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "温度の目盛:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "摂氏(_C)"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "華氏(_F)"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "ユニットを表示(_U)"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "小さな横幅間隔(_p)"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "メッセージを抑制する"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "更新間隔(秒)(_p):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "ダブルクリックで実行(_x):"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "表示(_V)"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "センサー(_S)"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "その他(_M)"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "プロパティの編集"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "センサープラグイン"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "ハードディスク"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s ゾーン"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "不明"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Xfce 4 センサープラグイン"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. ハードディスク温度"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -267,11 +186,11 @@
 "%s\n"
 "返り値: %d です。\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "今後このメッセージを抑制する"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -280,15 +199,153 @@
 "\"%s\" を実行するときにエラーが発生しました。:\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "摂氏 %5.1f 度"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM センサー"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "エラー: センサーに接続できませんでした!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce ハードウェアセンサー・プラグイン: \n"
+"センサーの機能値の読み込みに問題があるようです。 \n"
+"正確な値は保証されません。\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "センサーの種類(_y):"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "説明:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "名前"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "値"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "表示"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "色"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "最小"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "最大"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "温度の目盛:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "摂氏(_C)"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "華氏(_F)"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "センサー(_S)"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "センサーが見つかりません!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "華氏 %5.1f 度"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "オフ"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "オン"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Xfce 4 センサープラグイン"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "センサーの値を表示します。"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "センサーの種類(_y):"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Xfce 4 センサープラグイン"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "センサープラグイン"

Modified: xfce4-sensors-plugin/trunk/po/ko.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ko.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ko.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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."
@@ -16,55 +16,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>센서</b></span> \n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f RPM"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f RPM"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "센서를 선택하지 않았습니다!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,184 +39,138 @@
 "센서의 기능과 측정치를 읽는 도중 문제가 생긴 것 같습니다.\n"
 "따라서 정상적인 동작을 보장할 수 없습니다.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "센서를 못 찾았습니다!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "UI 스타일(_U):"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "글자(_t)"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "그림(_r)"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "GUI에 레이블 보이기(_l)"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "색깔있는 막대 보이기(_b)"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "이름 보여주기(_S)"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "센서 종류(_t):"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "이름"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "값"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "보이기"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "색상"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "최소"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "최대"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "글꼴 크기(_o):"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "아주 작게"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "작게"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "중간"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "크게"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "아주 크게"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "온도 단위(_e):"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "섭씨(_C)"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "화씨(_F)"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "이름 보여주기(_S)"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "검사 간격 (초)(_p):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "따닥(더블클릭)하면 실행합니다(_x):"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "<b>센서</b>"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>기타</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "속성 변경"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "센서 플러그인"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "하드 디스크"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "센서 플러그인"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "하드디스크 온도 센서"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,27 +185,168 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "<b>센서</b>"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "오류: 선세에 연결하지 못 했습니다."
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Xfce 하드웨어 센서 플러그인: \n"
+"센서의 기능과 측정치를 읽는 도중 문제가 생긴 것 같습니다.\n"
+"따라서 정상적인 동작을 보장할 수 없습니다.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "센서 종류(_t):"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "이름"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "값"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "보이기"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "색상"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "최소"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "최대"
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "온도 단위(_e):"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "섭씨(_C)"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "화씨(_F)"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "<b>센서</b>"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "센서를 못 찾았습니다!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f RPM"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f RPM"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "센서 플러그인"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "센서 값 보이기"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "센서 종류(_t):"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "센서 플러그인"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/lt.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/lt.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/lt.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,55 +15,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Sensoriai</b></span> \n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Nepasirinkti jokie sensoriai!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,185 +39,139 @@
 "savybės                         reikšmę. \n"
 "Tvarkingas tolesnis darbas negali būti užtikrinamas. \n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Jokių sensorių nerasta!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Rodyti pavadinimą"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Sensorių tipas:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Šrifto dydis:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "labai mažas"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "mažas"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "vidutinis"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "didelis"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "labai didelis"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
 msgid "Show _Units"
 msgstr "Rodyti pavadinimą"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Atnaujinimo dažnumas (sek.):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
-#, fuzzy
-msgid "_Sensors"
-msgstr "Sensorių tipas:"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr ""
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensorių tipas:"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Aparatiniai sensoriai"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -269,27 +186,167 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Sensorių tipas:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr ""
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Xfce aparatinių sensorių įskiepis: \n"
+"                       Atrodo, jog buvo problemų nuskaitant sensoriaus "
+"savybės                         reikšmę. \n"
+"Tvarkingas tolesnis darbas negali būti užtikrinamas. \n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Sensorių tipas:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr ""
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr ""
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr ""
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr ""
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr ""
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr ""
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr ""
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr ""
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "Sensorių tipas:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Jokių sensorių nerasta!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, c-format
+msgid "%.0f rpm"
+msgstr ""
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Sensorių tipas:"
+
+#: ../src/interface.c:52
+msgid "View sensor values"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Sensorių tipas:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Sensorių tipas:"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/lv.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/lv.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/lv.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: Pxfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,54 +15,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensors</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f apgr. min."
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f apgr. min."
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Neviens sensors nav izvēlēts!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -73,179 +36,135 @@
 "Liekas, ka radāas problēma lasot senosora iespēju vērtību.\n"
 "Darbotspējīga turpināšana netiek garentēta.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Netika atrasts neviens sensors!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "UI stils:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_teksts"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_rafisks"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Rādīt _etiķetes grafiskajā UI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Rādit krāsanaias _joslas"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Rādīt virsrakstu"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Sensora _tips:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nosaukums"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Vērtība"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Rādīt"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Krāsa"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Maks"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "F_onta izmērs:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "vissmazākais"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "mazs"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "vidējs"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "liels"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "visslielākais"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Temperatūras skala:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsija"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fārenheita"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
 msgid "Show _Units"
 msgstr "_Rādīt virsrakstu"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "At_jaunināšanas intervāls (sekundes)"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "I_zpildīt uz dubultklikšķi:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Skats"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "S_ensori"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Dažādi"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Rediģēt Rekvizītus"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Sensoru Spraudnis"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Cietie Diski"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Sensoru Spraudnis"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "S.M.A.R.T. cietā diska temperatūras"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -260,26 +179,164 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "LM Sensors"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Kļūda: Nevarēju savienoties ar sensoru!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Xfce Dzelžu Senosra Spraudnis:\n"
+"Liekas, ka radāas problēma lasot senosora iespēju vērtību.\n"
+"Darbotspējīga turpināšana netiek garentēta.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Sensora _tips:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nosaukums"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Vērtība"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Rādīt"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Krāsa"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Maks"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Temperatūras skala:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsija"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fārenheita"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "S_ensori"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Netika atrasts neviens sensors!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f apgr. min."
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f apgr. min."
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Sensoru Spraudnis"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Rādīt sensora vērtības."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Sensora _tips:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Sensoru Spraudnis"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sensoru spraudnis"

Modified: xfce4-sensors-plugin/trunk/po/pl.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pl.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/pl.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -16,55 +16,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Czujniki</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Brak wykrytych czujników!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,194 +39,145 @@
 "Chyba wystąpił problem przy czytaniu wartości z czujnika. \n"
 "Podane wartości mogą być niezgodne z prawdą.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Brak czujników!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Styl GUI:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "tekst"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "graficzny"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Pokazuj etykiety w GUI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Pokazuj kolorowe _słupki"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Pokazuj tutuł"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Typ sensorów:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nazwa"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Wartość"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Pokaż"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Kolor"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Minimum"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Maximum"
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Rozmiar czcionki:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-mała"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "mała"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "średnia"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "duża"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "x-duża"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Skala temperatury:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "Celcjusze"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "Farenhaity"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Pokazuj tutuł"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Czas aktualizacji (sek):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Wykonaj przy podwójnym kliknięciu:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "Typ sensorów:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Inne</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Edytuj właściowości"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Wtyczka Czujników"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Dyski twarde"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Wtyczka Czujników"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Czujniki temperatury dysku"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -278,27 +192,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Typ sensorów:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Błąd: nie mogę połączyć się z czujnikiem!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Wtyczka Xfce Czujniki Systemowe: \n"
+"Chyba wystąpił problem przy czytaniu wartości z czujnika. \n"
+"Podane wartości mogą być niezgodne z prawdą.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Typ sensorów:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nazwa"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Wartość"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Pokaż"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Kolor"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Minimum"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Maximum"
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Skala temperatury:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Celcjusze"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "Farenhaity"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "Typ sensorów:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Brak czujników!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Wtyczka Czujników"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Pokazuj wartości z czujników"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Typ sensorów:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Wtyczka Czujników"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/pt_BR.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pt_BR.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/pt_BR.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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,54 +18,17 @@
 "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-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensores</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "desligado"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "ligado"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Nenhum sensor selecionado!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -76,177 +39,133 @@
 "Parece ter ocorrido um problema durante a leitura de algum sensor.\n"
 "Não é possível garantir o procedimento apropriado.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Nenhum sensor encontrado!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Estilo da interface:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_texto"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_ráfico"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Mostrar rótu_los na interface gráfica"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Mostrar _barras coloridas"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "Mo_strar título"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Tipos de sensores:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Descrição:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nome"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Valor"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Mostrar"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Cor"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Mín."
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Máx."
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Tamanho de f_onte:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "muito pequena"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "pequena"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "média"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "grande"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "muito grande"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Escala de temperatura:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Mostrar _unidades"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Pequeno es_paço horizontal"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Suprimir mensagens"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "Intervalo de atualização (em segundos):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "E_xecutar com clique duplo:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Ver"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensores"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Miscelâneo"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Editar Propriedades"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Plug-in de Sensores"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas v%s ACPI"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Desconhecido>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plug-in de sensores do Xfce"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Temperatura do disco rígido S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -272,11 +191,11 @@
 "%s\n"
 "com um valor de retorno de %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Suprimir esta mensagem no futuro"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -285,15 +204,153 @@
 "Um erro ocorreu ao executar \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "Tipos de Sensores"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Erro: Não foi possível conectar-se aos sensores!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Plug-in de Sensores de Hardware do Xfce:\n"
+"Parece ter ocorrido um problema durante a leitura de algum sensor.\n"
+"Não é possível garantir o procedimento apropriado.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Tipos de sensores:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Descrição:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nome"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Valor"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Mostrar"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Cor"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Mín."
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Máx."
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Escala de temperatura:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensores"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Nenhum sensor encontrado!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "desligado"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "ligado"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Plug-in de sensores do Xfce"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Mostrar valores do sensor."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Tipos de sensores:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Plug-in de sensores do Xfce"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Plug-in do sensor"

Modified: xfce4-sensors-plugin/trunk/po/pt_PT.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/pt_PT.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/pt_PT.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-13 15:46+0100\n"
 "Last-Translator: Nuno Miguel <nunis at netcabo.pt>\n"
 "Language-Team: \n"
@@ -15,54 +15,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Sensores</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "desligado"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "ligado"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Nenhum sensor seleccionado!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -73,177 +36,133 @@
 "Parece ter ocorrido um problema durante a leitura de um sensor.\n"
 "Não é possível garantir o procedimento apropriado.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Nenhum sensor encontrado!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Estilo da interface:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_texto"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "g_ráfico"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Mostrar rótu_los na interface gráfica"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Mostrar _barras coloridas"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Mostrar título"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "_Tipos de sensores:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Descrição:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Nome"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Valor"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Mostrar"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Cor"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Tamanho de f_onte:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-pequeno"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "pequeno"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "médio"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "grande"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "x-grande"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Escala de temperatura:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Mostrar _Unidades"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "E_spaçamento horizontal pequeno"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Suprimir mensagens"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "Intervalo de _actualização (segundos):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "E_xecutar com duplo clique:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Ver"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Sensores"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Variedades"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Editar Propriedades"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Sensors Plugin"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Discos rígidos"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "Zonas ACPI v%s"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Desconhecido>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin Sensores Xfce 4"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Temperatura do disco rígido S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -268,11 +187,11 @@
 "%s\n"
 "com um retorno de erro de %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Suprimir esta mensagem no futuro"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -281,15 +200,153 @@
 "Um erro ocorreu ao executar \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "Sensores LM"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Erro: Impossível ligar aos sensores!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Plug-in de Sensores de Hardware do Xfce:\n"
+"Parece ter ocorrido um problema durante a leitura de um sensor.\n"
+"Não é possível garantir o procedimento apropriado.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "_Tipos de sensores:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Descrição:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Nome"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Valor"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Mostrar"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Cor"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Escala de temperatura:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Celsius"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Sensores"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Nenhum sensor encontrado!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "desligado"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "ligado"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Plugin Sensores Xfce 4"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Mostrar valores de sensor."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "_Tipos de sensores:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Plugin Sensores Xfce 4"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Sensor plugin"

Modified: xfce4-sensors-plugin/trunk/po/ru.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ru.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ru.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,55 +15,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Сенсоры</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f оборотов/мин"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f оборотов/мин"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Сенсоры не выбраны!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -71,193 +34,144 @@
 "Proper proceeding cannot be guaranteed.\n"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Сенсоры на найдены!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Стиль отображения"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "текстовый"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "графический"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Отображать метки"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Отображать заголовок"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Тип сенсоров:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Имя"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Значение"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Отображать"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Цвет"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Мин."
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Макс."
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Размер шрифта:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "крошечный"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "маленький"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "средний"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "большой"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "огромный"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Температурная шкала:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "По Цельсию"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "По Фаренгейту"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Отображать заголовок"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Интервал обновления (сек.):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Выполнить по двойному щелчку:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "<b>Сенсоры</b>"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Дополнительно</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Свойства"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Сенсоры"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Сенсоры"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -272,27 +186,165 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "<b>Сенсоры</b>"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Ошибка: Не удается соединиться с сенсорами!"
 
+#: ../lib/sensors-interface.c:63
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Тип сенсоров:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Имя"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Значение"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Отображать"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Цвет"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Мин."
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Макс."
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Температурная шкала:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "По Цельсию"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "По Фаренгейту"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "<b>Сенсоры</b>"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Сенсоры на найдены!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f оборотов/мин"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f оборотов/мин"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Сенсоры"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Отображает значения сенсоров."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Тип сенсоров:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Сенсоры"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/sq.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/sq.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/sq.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,55 +15,18 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.1\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Ndijuesa</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Pa ndijuesa të përzgjedhur!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,194 +38,145 @@
 "Duket se ka problem me leximin e vlerës së një ndijuesi. \n"
 "Nuk garantoj dot ecurinë e duhur.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "S'u gjetën ndijuesa!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Stil UI-je:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "tekst"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "grafik"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Shfaq etiketa në UI grafike"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Shfaq titull"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Tip ndijuesish:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Emër"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Vlerë"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Shfaq"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Ngjyrë"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min."
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Maks."
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Madhësi gërmash:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-small"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "të vogla"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "të mesme"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "të mëdha"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "shumë të mëdha"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Shkallë temperature:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "Fahrenheit"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Shfaq titull"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Interval përditësimi (sekonda):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Veprim kur dyklikohet:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "Tip ndijuesish:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Të ndryshme</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Përpunoni Veti"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Shtojcë Ndijuesish"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Hard disqe"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Shtojcë Ndijuesish"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Nidjuesa temperature hard disku"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -277,27 +191,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "Tip ndijuesish:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Gabim: Nuk u lidha dot me ndijuesat!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Shtojcë Xfce për Ndijuesa \"Hardware\": \n"
+"Duket se ka problem me leximin e vlerës së një ndijuesi. \n"
+"Nuk garantoj dot ecurinë e duhur.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Tip ndijuesish:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Emër"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Vlerë"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Shfaq"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Ngjyrë"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min."
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Maks."
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Shkallë temperature:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Celsius"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "Fahrenheit"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "Tip ndijuesish:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "S'u gjetën ndijuesa!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Shtojcë Ndijuesish"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Shfaq vlera ndijuesish."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Tip ndijuesish:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Shtojcë Ndijuesish"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/uk.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/uk.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/uk.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+0200\n"
 "PO-Revision-Date: 2008-07-09 12:15+0300\n"
 "Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
 "Language-Team: Ukrainian <xfce4-dev at xfce.org>\n"
@@ -16,54 +16,17 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\"><b>Сенсори</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr "%5.1f °F градусів Фаренгейта"
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr "%5.1f °C градусів Цельсія"
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr "%+5.2f V вольт"
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr "%.0f mWh"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr "вимкнуто"
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr "увімкнуто"
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f обертів за хвилину"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Не вибрано сенсорів!"
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -74,177 +37,133 @@
 "Здається існують проблеми читання значень опцій сенсора.\n"
 "Правильна обробка не може бути гарантована.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Не знайдено сенсорів!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "Стиль UI:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr "_текстовий"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr "г_рафічний"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr "Показувати _мітки в графічному UI"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr "Поазувати кольорові _панелі"
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr "_Показувати назву"
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr "Тип с_енсорів:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr "Опис:"
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Назва"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Значення"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Відображення"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Колір"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Мінімум"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Максимум"
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr "Розмір _шрифту:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "найменші"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "малі"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "середні"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "великі"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "найбільші"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "Шкала температури:"
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr "_Цельсія"
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr "_Фаренгейта"
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr "Показувати _значення"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr "Малі горизонтальні про_міжки"
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr "Додаткові повідомлення"
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr "Інтер_вал оновлення (секунд):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr "В_иконати при подвійному клацінні:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr "_Перегляд"
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr "_Сенсори"
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr "_Різне"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Редагувати властивості"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Плагін сенсорів"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "Жорсткі диски"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr "Інтерфейс ACPI"
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr "ACPI v%s зони"
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr "<Невідомо>"
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Плагін сенсорів для Xfce 4"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "Температура жорстких дисків із S.M.A.R.T."
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -269,11 +188,11 @@
 "%s\n"
 "і повернув значення    %d.\n"
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr "Доповнювати це повідомлення в майбутньому"
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
@@ -282,15 +201,153 @@
 "Під час виконання виникла помилка \"%s\":\n"
 "%s"
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, fuzzy, c-format
+msgid "%.1f °C"
+msgstr "%5.1f °C градусів Цельсія"
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr "Сенсори LM"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Помилка: Неможливо отримати доступ до сенсорів!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+"Плагін сенсорів обладнання для Xfce:\n"
+"Здається існують проблеми читання значень опцій сенсора.\n"
+"Правильна обробка не може бути гарантована.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Тип с_енсорів:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr "Опис:"
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Назва"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Значення"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Відображення"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Колір"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Мінімум"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Максимум"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "Шкала температури:"
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr "_Цельсія"
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr "_Фаренгейта"
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr "_Сенсори"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Не знайдено сенсорів!"
+
+#: ../lib/sensors-interface-common.c:134
+#, fuzzy, c-format
+msgid "%.1f °F"
+msgstr "%5.1f °F градусів Фаренгейта"
+
+#: ../lib/sensors-interface-common.c:142
+#, fuzzy, c-format
+msgid "%+.2f V"
+msgstr "%+5.2f V вольт"
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr "%.0f mWh"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr "вимкнуто"
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr "увімкнуто"
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f обертів за хвилину"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Плагін сенсорів для Xfce 4"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Поазувати значення сенсорів."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Тип с_енсорів:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Плагін сенсорів для Xfce 4"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "Плагін сенсорів "

Modified: xfce4-sensors-plugin/trunk/po/ur.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/ur.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/ur.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -18,55 +18,18 @@
 "X-Poedit-Country: PAKISTAN\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>سینسرز</b></span>"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "کوئی سینسر منتخب نہیں!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -78,192 +41,144 @@
 "معلوم ہوتا ہے کہ سینسر خاصیت ویلیو پڑھنے میں مسئلہ ہے. \n"
 "درست کاروائی کی ضمانت نہیں دی جاسکتی.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "کوئی سینسر نہیں ملا!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr "مواجہ انداز:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "متن"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "گریفکل"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "گریفکل مواجہ میں لیبل ظاہر کریں"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "عنوان ظاہر کریں"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "سینسر قسم:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "نام"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "ویلیو"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "دکھائیں"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "رنگ"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "کم"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "زیادہ"
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "فونٹ حجم:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "x-چھوٹا"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "چھوٹا"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "درمیانہ"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "بڑا"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "x-بڑا"
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr "ٹمپریچر قیاس:"
-
-#: ../panel-plugin/sensors.c:1941
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "_Celsius"
-msgstr "Celsius"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "فارن ہائیٹ"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "عنوان ظاہر کریں"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "تجدید وقفہ (سیکنڈ):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "دہرے کلک پر چلائیں:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "سینسر قسم:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>متفرق</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "خصوصیات مدون کریں"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "سینسرز پلگ ان"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr "ہارڈ ڈسکس"
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "سینسرز پلگ ان"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 #, fuzzy
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr "ہارڈ ڈسک ٹمپریچر سینسرز"
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -278,27 +193,169 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "سینسر قسم:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "غلطی: سینسر سے رابطہ نہیں ہوسکا!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"ایکسفس ہارڈویئر سینسر پلگ ان: \n"
+"معلوم ہوتا ہے کہ سینسر خاصیت ویلیو پڑھنے میں مسئلہ ہے. \n"
+"درست کاروائی کی ضمانت نہیں دی جاسکتی.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "سینسر قسم:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "نام"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "ویلیو"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "دکھائیں"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "رنگ"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "کم"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "زیادہ"
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr "ٹمپریچر قیاس:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Celsius"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "فارن ہائیٹ"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "سینسر قسم:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "کوئی سینسر نہیں ملا!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "سینسرز پلگ ان"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "سینسر ویلیو دکھائیں:"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "سینسر قسم:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "سینسرز پلگ ان"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr "سینسر پلگ ان"

Modified: xfce4-sensors-plugin/trunk/po/vi.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/vi.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/vi.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,55 +15,18 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.9.1\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>Cảm ứng</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "Chưa chọn bộ cảm ứng nào!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,193 +38,144 @@
 "Có vẻ như có vấn đề đọc một giá trị cảm ứng. \n"
 "Không có bảo đảm cho sự thực hiện.\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "Không tìm thấy bộ cảm ứng!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "Dạng giao diện:"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "văn bản"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "đồ hoạ"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "Hiển thị nhãn trong giao diện đồ hoạ"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "Hiển thị tiêu đề"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "Dạng cảm ứng:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "Tên"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "Giá trị"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "Hiện"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "Màu"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "Min"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "Max"
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "Kích cỡ phông:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "rất nhỏ"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "nhỏ"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "trung bình"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "lớn"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "rất lớn"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "Thang nhiệt độ:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "Độ C"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "Độ F"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "Hiển thị tiêu đề"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "Cập nhật sau (giây):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "Thực hiện khi nháy kép:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "<b>Cảm ứng</b>"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>Khác</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "Sửa thuộc tính"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "Plugin cảm ứng"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "Plugin cảm ứng"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -276,27 +190,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "<b>Cảm ứng</b>"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Lỗi: Không thể kết nối tới bộ cảm ứng!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Plugin bộ cảm ứng phần cứng của Xfce: \n"
+"Có vẻ như có vấn đề đọc một giá trị cảm ứng. \n"
+"Không có bảo đảm cho sự thực hiện.\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "Dạng cảm ứng:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "Tên"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "Giá trị"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "Hiện"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "Màu"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "Min"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "Max"
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "Thang nhiệt độ:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "Độ C"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "Độ F"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "<b>Cảm ứng</b>"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "Không tìm thấy bộ cảm ứng!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "Plugin cảm ứng"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "Hiển thị các giá trị cảm ứng."
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "Dạng cảm ứng:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "Plugin cảm ứng"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "

Modified: xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot
===================================================================
--- xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/xfce4-sensors-plugin.pot	2008-10-21 23:07:51 UTC (rev 5743)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-06-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -16,54 +16,17 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, c-format
-msgid "%.0f mWh"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr ""
 
 #. 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-plugin.c:636
 #, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -71,177 +34,133 @@
 "Proper proceeding cannot be guaranteed.\n"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 msgid "UI style:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 msgid "_text"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 msgid "g_raphical"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 msgid "Show _labels in graphical UI"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 msgid "_Show title"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1758
-msgid "Sensors t_ype:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1896
+#: ../panel-plugin/sensors-plugin.c:1522
 msgid "F_ont size:"
 msgstr ""
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1939
-msgid "Temperature scale:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1941
-msgid "_Celsius"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1943
-msgid "_Fahrenheit"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1972
+#: ../panel-plugin/sensors-plugin.c:1561
 msgid "Show _Units"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 msgid "U_pdate interval (seconds):"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 msgid "E_xecute on double click:"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
-msgid "_Sensors"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:2176
+#: ../panel-plugin/sensors-plugin.c:1738
 msgid "_Miscellaneous"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr ""
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 msgid "Xfce 4 Sensors Plugin"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -256,26 +175,155 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 msgid "LM Sensors"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr ""
 
+#: ../lib/sensors-interface.c:63
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+
+#: ../lib/sensors-interface.c:131
+msgid "Sensors t_ype:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr ""
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr ""
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr ""
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr ""
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr ""
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr ""
+
+#: ../lib/sensors-interface.c:270
+msgid "Temperature scale:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:272
+msgid "_Celsius"
+msgstr ""
+
+#: ../lib/sensors-interface.c:274
+msgid "_Fahrenheit"
+msgstr ""
+
+#: ../lib/sensors-interface.c:310
+msgid "_Sensors"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, c-format
+msgid "%.0f mWh"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, c-format
+msgid "%.0f rpm"
+msgstr ""
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+msgid "Xfce 4 Sensors Viewer"
+msgstr ""
+
+#: ../src/interface.c:52
+msgid "View sensor values"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+msgid "Sensors Viewer"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+msgid "Xfce 4 Sensors"
+msgstr ""
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 msgid "Sensor plugin "
 msgstr ""

Modified: xfce4-sensors-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-sensors-plugin/trunk/po/zh_TW.po	2008-10-21 20:17:02 UTC (rev 5742)
+++ xfce4-sensors-plugin/trunk/po/zh_TW.po	2008-10-21 23:07:51 UTC (rev 5743)
@@ -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-26 23:45+0200\n"
+"POT-Creation-Date: 2008-10-22 00:50+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"
@@ -15,55 +15,18 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/sensors.c:204 ../panel-plugin/sensors.c:788
+#: ../panel-plugin/sensors-plugin.c:224 ../panel-plugin/sensors-plugin.c:773
 #, fuzzy
 msgid "<span foreground=\"#000000\"><b>Sensors</b></span>"
 msgstr "<span foreground=\"#000000\" size=\"%s\"><b>感測器</b></span>\n"
 
-#: ../panel-plugin/sensors.c:559
-#, c-format
-msgid "%5.1f °F"
-msgstr ""
-
-#. Celsius
-#. 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:444
-#, c-format
-msgid "%5.1f °C"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:567
-#, c-format
-msgid "%+5.2f V"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:571
-#, fuzzy, c-format
-msgid "%.0f mWh"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:576
-msgid "off"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:578
-msgid "on"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:582
-#, c-format
-msgid "%5.0f rpm"
-msgstr "%5.0f rpm"
-
-#: ../panel-plugin/sensors.c:614
+#: ../panel-plugin/sensors-plugin.c:599
 msgid "No sensors selected!"
 msgstr "沒有感測器被選用!"
 
 #. 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-plugin.c:636
 #, fuzzy, c-format
 msgid ""
 "Xfce Hardware Sensors Plugin:\n"
@@ -75,193 +38,144 @@
 "在讀取感測器數值時似乎有點問題。\n"
 "無法保證能夠正常運作。\n"
 
-#: ../panel-plugin/sensors.c:931
-msgid "No sensors found!"
-msgstr "找不到感測器!"
-
-#: ../panel-plugin/sensors.c:1632
+#: ../panel-plugin/sensors-plugin.c:1398
 #, fuzzy
 msgid "UI style:"
 msgstr "使用介面風格"
 
-#: ../panel-plugin/sensors.c:1633
+#: ../panel-plugin/sensors-plugin.c:1399
 #, fuzzy
 msgid "_text"
 msgstr "文字"
 
-#: ../panel-plugin/sensors.c:1635
+#: ../panel-plugin/sensors-plugin.c:1401
 #, fuzzy
 msgid "g_raphical"
 msgstr "圖形"
 
-#: ../panel-plugin/sensors.c:1672
+#: ../panel-plugin/sensors-plugin.c:1438
 #, fuzzy
 msgid "Show _labels in graphical UI"
 msgstr "在圖形介面中顯示標籤"
 
-#: ../panel-plugin/sensors.c:1702
+#: ../panel-plugin/sensors-plugin.c:1468
 msgid "Show colored _bars"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:1730
+#: ../panel-plugin/sensors-plugin.c:1496
 #, fuzzy
 msgid "_Show title"
 msgstr "顯示標題"
 
-#: ../panel-plugin/sensors.c:1758
+#: ../panel-plugin/sensors-plugin.c:1522
 #, fuzzy
-msgid "Sensors t_ype:"
-msgstr "感測器類型:"
-
-#: ../panel-plugin/sensors.c:1783
-msgid "Description:"
-msgstr ""
-
-#: ../panel-plugin/sensors.c:1820
-msgid "Name"
-msgstr "名稱"
-
-#: ../panel-plugin/sensors.c:1829
-msgid "Value"
-msgstr "數值"
-
-#: ../panel-plugin/sensors.c:1835
-msgid "Show"
-msgstr "顯示"
-
-#: ../panel-plugin/sensors.c:1844
-msgid "Color"
-msgstr "顏色"
-
-#: ../panel-plugin/sensors.c:1854
-msgid "Min"
-msgstr "最小"
-
-#: ../panel-plugin/sensors.c:1863
-msgid "Max"
-msgstr "最大"
-
-#: ../panel-plugin/sensors.c:1896
-#, fuzzy
 msgid "F_ont size:"
 msgstr "字型大小:"
 
 #. gtk_widget_set_sensitive(myFontBox, !sd->sensors->display_values_graphically);
-#: ../panel-plugin/sensors.c:1903
+#: ../panel-plugin/sensors-plugin.c:1529
 msgid "x-small"
 msgstr "極小"
 
-#: ../panel-plugin/sensors.c:1904
+#: ../panel-plugin/sensors-plugin.c:1530
 msgid "small"
 msgstr "小"
 
-#: ../panel-plugin/sensors.c:1905
+#: ../panel-plugin/sensors-plugin.c:1531
 msgid "medium"
 msgstr "普通"
 
-#: ../panel-plugin/sensors.c:1906
+#: ../panel-plugin/sensors-plugin.c:1532
 msgid "large"
 msgstr "大"
 
-#: ../panel-plugin/sensors.c:1907
+#: ../panel-plugin/sensors-plugin.c:1533
 msgid "x-large"
 msgstr "巨大"
 
-#: ../panel-plugin/sensors.c:1939
+#: ../panel-plugin/sensors-plugin.c:1561
 #, fuzzy
-msgid "Temperature scale:"
-msgstr "温標:"
-
-#: ../panel-plugin/sensors.c:1941
-#, fuzzy
-msgid "_Celsius"
-msgstr "攝氏"
-
-#: ../panel-plugin/sensors.c:1943
-#, fuzzy
-msgid "_Fahrenheit"
-msgstr "華氏"
-
-#: ../panel-plugin/sensors.c:1972
-#, fuzzy
 msgid "Show _Units"
 msgstr "顯示標題"
 
-#: ../panel-plugin/sensors.c:1993
+#: ../panel-plugin/sensors-plugin.c:1582
 msgid "Small horizontal s_pacing"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2015
+#: ../panel-plugin/sensors-plugin.c:1604
 msgid "Suppress messages"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2044
+#: ../panel-plugin/sensors-plugin.c:1633
 #, fuzzy
 msgid "U_pdate interval (seconds):"
 msgstr "更新間隔時間(秒):"
 
-#: ../panel-plugin/sensors.c:2074
+#: ../panel-plugin/sensors-plugin.c:1663
 #, fuzzy
 msgid "E_xecute on double click:"
 msgstr "於雙擊時執行:"
 
-#: ../panel-plugin/sensors.c:2117
+#: ../panel-plugin/sensors-plugin.c:1706
 msgid "_View"
 msgstr ""
 
-#: ../panel-plugin/sensors.c:2148
+#: ../panel-plugin/sensors-plugin.c:1738
 #, fuzzy
-msgid "_Sensors"
-msgstr "感測器類型:"
-
-#: ../panel-plugin/sensors.c:2176
-#, fuzzy
 msgid "_Miscellaneous"
 msgstr "<b>雜項</b>"
 
-#: ../panel-plugin/sensors.c:2225
+#: ../panel-plugin/sensors-plugin.c:1808
 msgid "Edit Properties"
 msgstr "編輯屬性"
 
-#: ../panel-plugin/sensors.c:2232 ../panel-plugin/sensors.h:41
+#: ../panel-plugin/sensors-plugin.c:1815 ../panel-plugin/sensors-plugin.h:29
 msgid "Sensors Plugin"
 msgstr "感測器外掛程式"
 
+#. #if GTK_VERSION < 2.11
+#: ../panel-plugin/sensors-plugin.c:1846
+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 hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../panel-plugin/configuration.c:140 ../panel-plugin/configuration.c:317
-#: ../panel-plugin/configuration.c:324 ../panel-plugin/hddtemp.c:229
-#: ../panel-plugin/hddtemp.c:270 ../panel-plugin/hddtemp.c:275
+#: ../lib/configuration.c:151 ../lib/configuration.c:331
+#: ../lib/configuration.c:338 ../lib/hddtemp.c:266 ../lib/hddtemp.c:307
+#: ../lib/hddtemp.c:312
 msgid "Hard disks"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:412 ../panel-plugin/acpi.c:420
+#: ../lib/acpi.c:416 ../lib/acpi.c:424
 msgid "ACPI"
 msgstr ""
 
 #. to be displayed
-#. chip->description = _("Advanced Configuration and Power Interface");
-#: ../panel-plugin/acpi.c:414
+#. chip->description = g_strdup(_("Advanced Configuration and Power Interface"));
+#: ../lib/acpi.c:418
 #, c-format
 msgid "ACPI v%s zones"
 msgstr ""
 
-#: ../panel-plugin/acpi.c:517
+#: ../lib/acpi.c:533
 msgid "<Unknown>"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:94
+#: ../lib/hddtemp.c:131
 #, fuzzy
 msgid "Xfce 4 Sensors Plugin"
 msgstr "感測器外掛程式"
 
-#: ../panel-plugin/hddtemp.c:274
+#: ../lib/hddtemp.c:311
 msgid "S.M.A.R.T. harddisk temperatures"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:354
+#: ../lib/hddtemp.c:391
 #, c-format
 msgid ""
 "\"hddtemp\" was not executed correctly, although it is executable. This is "
@@ -276,27 +190,170 @@
 "with a return value of %d.\n"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:364 ../panel-plugin/hddtemp.c:390
+#: ../lib/hddtemp.c:401 ../lib/hddtemp.c:427
 msgid "Suppress this message in future"
 msgstr ""
 
-#: ../panel-plugin/hddtemp.c:388
+#: ../lib/hddtemp.c:425
 #, c-format
 msgid ""
 "An error occurred when executing \"%s\":\n"
 "%s"
 msgstr ""
 
-#: ../panel-plugin/lmsensors.c:77
+#. if (scale == FAHRENHEIT) {
+#. cf->formatted_value = g_strdup_printf(_("%.1f °F"), (float) (value * 9/5 + 32) );
+#. } else { // Celsius
+#. Celsius
+#: ../lib/hddtemp.c:481 ../lib/sensors-interface-common.c:137
+#, c-format
+msgid "%.1f °C"
+msgstr ""
+
+#: ../lib/lmsensors.c:103
 #, fuzzy
 msgid "LM Sensors"
 msgstr "感測器類型:"
 
-#: ../panel-plugin/lmsensors.c:335 ../panel-plugin/lmsensors.c:382
+#: ../lib/lmsensors.c:362 ../lib/lmsensors.c:409
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "錯誤:無法連線至感測器!"
 
+#: ../lib/sensors-interface.c:63
+#, fuzzy
+msgid ""
+"Seems like there was a problem reading a sensor feature value.\n"
+"Proper proceeding cannot be guaranteed."
+msgstr ""
+" \n"
+"Xfce 硬體感測外掛程式:\n"
+"在讀取感測器數值時似乎有點問題。\n"
+"無法保證能夠正常運作。\n"
+
+#: ../lib/sensors-interface.c:131
+#, fuzzy
+msgid "Sensors t_ype:"
+msgstr "感測器類型:"
+
+#: ../lib/sensors-interface.c:156
+msgid "Description:"
+msgstr ""
+
+#: ../lib/sensors-interface.c:193
+msgid "Name"
+msgstr "名稱"
+
+#: ../lib/sensors-interface.c:202
+msgid "Value"
+msgstr "數值"
+
+#: ../lib/sensors-interface.c:208
+msgid "Show"
+msgstr "顯示"
+
+#: ../lib/sensors-interface.c:217
+msgid "Color"
+msgstr "顏色"
+
+#: ../lib/sensors-interface.c:227
+msgid "Min"
+msgstr "最小"
+
+#: ../lib/sensors-interface.c:236
+msgid "Max"
+msgstr "最大"
+
+#: ../lib/sensors-interface.c:270
+#, fuzzy
+msgid "Temperature scale:"
+msgstr "温標:"
+
+#: ../lib/sensors-interface.c:272
+#, fuzzy
+msgid "_Celsius"
+msgstr "攝氏"
+
+#: ../lib/sensors-interface.c:274
+#, fuzzy
+msgid "_Fahrenheit"
+msgstr "華氏"
+
+#: ../lib/sensors-interface.c:310
+#, fuzzy
+msgid "_Sensors"
+msgstr "感測器類型:"
+
+#: ../lib/sensors-interface-common.c:67
+msgid "No sensors found!"
+msgstr "找不到感測器!"
+
+#: ../lib/sensors-interface-common.c:134
+#, c-format
+msgid "%.1f °F"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:142
+#, c-format
+msgid "%+.2f V"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:146
+#, fuzzy, c-format
+msgid "%.0f mWh"
+msgstr "%5.0f rpm"
+
+#: ../lib/sensors-interface-common.c:151
+msgid "off"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:153
+msgid "on"
+msgstr ""
+
+#: ../lib/sensors-interface-common.c:157
+#, fuzzy, c-format
+msgid "%.0f rpm"
+msgstr "%5.0f rpm"
+
+#: ../src/main.c:46
+#, c-format
+msgid ""
+"Xfce4 Sensors %s\n"
+"Displays information about your sensors and ACPI.\n"
+"Synopsis: \n"
+"  xfce4-sensors options\n"
+"where options are one or more of the following:\n"
+"  -h, --help Print this help dialog.\n"
+"\n"
+"This program is published under the GPL v2.\n"
+msgstr ""
+
+#. start and populate
+#: ../src/interface.c:45
+#, fuzzy
+msgid "Xfce 4 Sensors Viewer"
+msgstr "感測器外掛程式"
+
+#: ../src/interface.c:52
+#, fuzzy
+msgid "View sensor values"
+msgstr "顯示感測器數值。"
+
+#: ../src/xfce4-sensors.desktop.in.h:1
+msgid "Graphical Sensors Viewer for Xfce 4"
+msgstr ""
+
+#: ../src/xfce4-sensors.desktop.in.h:2
+#, fuzzy
+msgid "Sensors Viewer"
+msgstr "感測器類型:"
+
+#: ../src/xfce4-sensors.desktop.in.h:3
+#, fuzzy
+msgid "Xfce 4 Sensors"
+msgstr "感測器外掛程式"
+
 #: ../panel-plugin/xfce4-sensors-plugin.desktop.in.in.h:1
 #, fuzzy
 msgid "Sensor plugin "




More information about the Goodies-commits mailing list