[tuxdroid-svn] r705 - in software/gadgets: battery_monitor/trunk battery_monitor/trunk/Battery_moni
Status: Beta
Brought to you by:
ks156
From: Paul_R <c2m...@c2...> - 2007-11-15 16:07:24
|
Author: Paul_R Date: 2007-11-15 17:07:07 +0100 (Thu, 15 Nov 2007) New Revision: 705 Modified: software/gadgets/battery_monitor/trunk/Battery_monitor.tgf software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Scripts/Python/GUI/widget/other.pyp software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Strings/fr_ALL.xml software/gadgets/battery_monitor/trunk/Battery_monitor_svn/about.xml software/gadgets/battery_monitor/trunk/Battery_monitor_svn/settings.xml software/gadgets/battery_monitor/trunk/Battery_monitor_svn/strings.xml software/gadgets/light_monitor/trunk/Light_monitor.tgf software/gadgets/light_monitor/trunk/Light_monitor/Scripts/Python/GUI/widget/other.pyp software/gadgets/light_monitor/trunk/Light_monitor/about.xml software/gadgets/light_monitor/trunk/Light_monitor/settings.xml software/gadgets/light_monitor/trunk/Light_monitor/strings.xml Log: * Fixed a bug which display a critical error : 'libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path: assertion `g_path_is_absolute (local_full_path)' failed' Modified: software/gadgets/battery_monitor/trunk/Battery_monitor.tgf =================================================================== (Binary files differ) Modified: software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Scripts/Python/GUI/widget/other.pyp =================================================================== --- software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Scripts/Python/GUI/widget/other.pyp 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Scripts/Python/GUI/widget/other.pyp 2007-11-15 16:07:07 UTC (rev 705) @@ -42,7 +42,8 @@ self.get_widget('txtValue').set_text(str(tab[0][3])) self.get_widget('txtTime').set_text(str(tab[0][4])) self.get_widget('chkNotify').set_active(tab[0][5]) - self.get_widget('Behavior').set_filename(tab[0][6]) + if tab[0][6] != None: + self.get_widget('Behavior').set_filename(str(tab[0][6])) Modified: software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Strings/fr_ALL.xml =================================================================== --- software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Strings/fr_ALL.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/battery_monitor/trunk/Battery_monitor_svn/Strings/fr_ALL.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -11,7 +11,7 @@ <widget_lblControl type='str'>Contrôle</widget_lblControl> <Increase type='str'>Le niveau de la batterie est passé en dessus du seuil</Increase> <full type='str'>Les batteries sont pleines</full> - <gui_conf_accept_bt type='str'>Valider</gui_conf_accept_bt> + <widget_lblChangeD type='str'>Changement inf.</widget_lblChangeD> <lblLowThreshold type='str'>Limite inférieure</lblLowThreshold> <help_text type='str'>-- Les évènements : Deux grands types d'évènements peuvent avoir lieu, contenant chacun diverses options : @@ -73,7 +73,7 @@ <MainBehavior type='str'>Comportement principal</MainBehavior> <speaker_name type='str'>Bruno8k</speaker_name> <conf_lblSample type='str'>Points</conf_lblSample> - <charging type='str'>En charge</charging> + <conf_lblType type='str'>Type</conf_lblType> <Change type='str'>Le niveau de la batterie a changé</Change> <Both type='str'>Le niveau de la batterie a passé le seuil</Both> <conf_btnModify type='str'>Modifier</conf_btnModify> @@ -102,18 +102,18 @@ <gui_conf_remote_set_bt type='str'>Set</gui_conf_remote_set_bt> <widget_lblChange type='str'>Changement</widget_lblChange> <name_to_read type='str'>Moniteur de batteries</name_to_read> - <conf_lblNotNotified type='str'>Non notifié</conf_lblNotNotified> + <gui_conf_window_title type='str'>Paramètres</gui_conf_window_title> <Drop type='str'>Le niveau de la batterie a chuté</Drop> <conf_lblDrop type='str'>Chute</conf_lblDrop> - <gui_conf_window_title type='str'>Paramètres</gui_conf_window_title> + <conf_lblNotNotified type='str'>Non notifié</conf_lblNotNotified> <Raise type='str'>Le niveau de la batterie a augmenté</Raise> - <conf_lblType type='str'>Type</conf_lblType> + <charging type='str'>En charge</charging> <widget_lblSet type='str'>Ajouter a la config.</widget_lblSet> <Decrease type='str'>Le niveau de la batterie est passé en dessous du seuil</Decrease> <conf_lblValue type='str'>Valeur (V)</conf_lblValue> <conf_lblRate type='str'>Rafraichissement</conf_lblRate> <widget_lblBehavior type='str'>Activer le script</widget_lblBehavior> - <widget_lblChangeD type='str'>Changement inf.</widget_lblChangeD> + <gui_conf_accept_bt type='str'>Valider</gui_conf_accept_bt> <conf_lblTime type='str'>Temps (sec.)</conf_lblTime> <conf_lblControl type='str'>Contrôle</conf_lblControl> <conf_lblNotified type='str'>Notifié ?</conf_lblNotified> Modified: software/gadgets/battery_monitor/trunk/Battery_monitor_svn/about.xml =================================================================== --- software/gadgets/battery_monitor/trunk/Battery_monitor_svn/about.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/battery_monitor/trunk/Battery_monitor_svn/about.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='UTF-8'?> <about> + <gadget_name type='str'>battery_monitor</gadget_name> <gadget_author type='str'>Paul Rathgeb</gadget_author> + <gadget_description type='str'>Battery monitor for tux droid</gadget_description> <gadget_version type='str'>0.0.1</gadget_version> - <gadget_name type='str'>battery_monitor</gadget_name> - <gadget_description type='str'>Battery monitor for tux droid</gadget_description> </about> Modified: software/gadgets/battery_monitor/trunk/Battery_monitor_svn/settings.xml =================================================================== --- software/gadgets/battery_monitor/trunk/Battery_monitor_svn/settings.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/battery_monitor/trunk/Battery_monitor_svn/settings.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -1,36 +1,35 @@ <?xml version='1.0' encoding='UTF-8'?> <settings> <parameters> - <Sample type='float'>600.0</Sample> - <low_threshold type='float'>4.8</low_threshold> + <test_tab type='list'>[[1, 0, 0, 0.10000000000000001, 20.0, True, None, False, 0]]</test_tab> <chkMotors type='bool'>True</chkMotors> + <low_threshold type='float'>4.8</low_threshold> <MainScript type='str'>None</MainScript> - <test_tab type='list'>[[1, 0, 0, 0.10000000000000001, 20.0, True, 'None', False, 0]]</test_tab> + <Sample type='float'>600.0</Sample> <Rate type='float'>1.0</Rate> <high_threshold type='float'>6.0</high_threshold> - <config type='list'>[]</config> + <config type='list'>[[1, 0, 0, 1.0, 1.0, False, 'None', False, 0], [2, 1, 0, 4.0, 1.0, False, 'None', False, 0]]</config> </parameters> <general> + <have_settings_part type='bool'>True</have_settings_part> <gui_state> <widget> - <y type='int'>362</y> - <visible type='bool'>True</visible> - <x type='int'>133</x> + <visible type='bool'>False</visible> </widget> <conf> - <y type='int'>27</y> - <visible type='bool'>True</visible> - <x type='int'>0</x> + <visible type='bool'>False</visible> </conf> </gui_state> <language type='str'>en_US</language> <notified type='bool'>True</notified> + <have_widget_part type='bool'>True</have_widget_part> <notify_delay type='int'>1</notify_delay> <framework_version type='str'>0.0.0</framework_version> <menu_active type='bool'>True</menu_active> <main_priority type='int'>4</main_priority> <speaker type='int'>3</speaker> <pitch type='int'>100</pitch> + <have_main_part type='bool'>True</have_main_part> <notify_priority type='int'>4</notify_priority> </general> </settings> Modified: software/gadgets/battery_monitor/trunk/Battery_monitor_svn/strings.xml =================================================================== --- software/gadgets/battery_monitor/trunk/Battery_monitor_svn/strings.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/battery_monitor/trunk/Battery_monitor_svn/strings.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -1,17 +1,22 @@ <?xml version='1.0' encoding='UTF-8'?> <strings> <conf_lblIncrease type='str'>Increase</conf_lblIncrease> + <widget_lblChangeD type='str'>Drop and raise</widget_lblChangeD> <conf_lblThreshold type='str'>Threshold</conf_lblThreshold> <gui_conf_remote_title type='str'>Control</gui_conf_remote_title> + <conf_lblTime type='str'>Time (sec.)</conf_lblTime> <battery type='str'>On battery</battery> <conf_lblRaise type='str'>Raise</conf_lblRaise> + <widget_lblTest type='str'>Notifications</widget_lblTest> <gui_conf_description_lb type='str'>Description</gui_conf_description_lb> <conf_lblEvent type='str'>Event</conf_lblEvent> <widget_lblControl type='str'>Control</widget_lblControl> <Increase type='str'>The battery level exceeded the threshold</Increase> - <full type='str'>The level of the batteries is full</full> - <widget_lblChangeD type='str'>Drop and raise</widget_lblChangeD> - <gui_conf_delay_lb type='str'>Delay (sec)</gui_conf_delay_lb> + <conf_btnModify type='str'>Modify</conf_btnModify> + <gui_conf_accept_bt type='str'>Accept</gui_conf_accept_bt> + <lblLowThreshold type='str'>Lower limit</lblLowThreshold> + <gui_conf_remote_set_bt type='str'>Set</gui_conf_remote_set_bt> + <lblMotors type='str'>Disable measurement when the motors are running</lblMotors> <help_text type='str'>--The events: Two main types of events can take place, each containing various options: @@ -47,7 +52,6 @@ When this window is displayed, the events stored in the settings window are not notified. This window makes it possible to try various configurations and to add them in the settings table.</help_text> <end_of_charge type='str'>The load of the battery is finished</end_of_charge> - <conf_btnRemove type='str'>Remove</conf_btnRemove> <conf_lblChange type='str'>Change</conf_lblChange> <conf_lblBoth type='str'>Both</conf_lblBoth> <widget_lblBtnApply type='str'>Apply changes</widget_lblBtnApply> @@ -57,31 +61,28 @@ <gui_conf_update_title type='str'>Update</gui_conf_update_title> <conf_lblChangeU type='str'>Raise and drop</conf_lblChangeU> <gui_conf_cancel_bt type='str'>Cancel</gui_conf_cancel_bt> - <widget_lblBoth type='str'>Both direction</widget_lblBoth> - <gui_conf_rate_lb type='str'>Refresh rate :</gui_conf_rate_lb> <absolute_threshold_high type='str'>The batteries are full</absolute_threshold_high> - <conf_lblType type='str'>Type</conf_lblType> <mainscript type='str'>I've found the light !</mainscript> - <MainBehavior type='str'>Main behavior</MainBehavior> - <lblLowThreshold type='str'>Lower limit</lblLowThreshold> + <gui_conf_delay_lb type='str'>Delay (sec)</gui_conf_delay_lb> <plugged type='str'>Plugged</plugged> - <ChangeU type='str'>The battery level raised and dropped</ChangeU> <conf_btnBehavior type='str'>Clear path</conf_btnBehavior> <charge type='str'>and the batteries are recharging</charge> <gui_conf_about_title type='str'>About</gui_conf_about_title> <conf_lblChangeD type='str'>Drop and raise</conf_lblChangeD> <low type='str'>The level of the batteries is weak</low> - <speaker_name type='str'>Ryan8k</speaker_name> + <conf_btnAdd type='str'>Add</conf_btnAdd> + <conf_lblBehavior type='str'>Behavior script</conf_lblBehavior> <conf_lblSample type='str'>Samples</conf_lblSample> <charging type='str'>Charging</charging> <Change type='str'>The battery level changed</Change> + <conf_lblValue type='str'>Value (V)</conf_lblValue> <Both type='str'>The battery level reached the threshold</Both> - <conf_btnModify type='str'>Modify</conf_btnModify> + <full type='str'>The level of the batteries is full</full> <widget_lblEvent type='str'>Event</widget_lblEvent> <normal type='str'>The level of the batteries is good</normal> <widget_lblIncrease type='str'>Increasing</widget_lblIncrease> <widget_lblRaise type='str'>Raise</widget_lblRaise> - <conf_btnAdd type='str'>Add</conf_btnAdd> + <gui_conf_rate_lb type='str'>Refresh rate :</gui_conf_rate_lb> <on_battery type='str'>and I'm powered by the battery</on_battery> <widget_lblDecrease type='str'>Decreasing</widget_lblDecrease> <gui_conf_sample_lb type='str'>Sample :</gui_conf_sample_lb> @@ -89,33 +90,32 @@ <conf_lblNotifiedBehavior type='str'>Notified</conf_lblNotifiedBehavior> <gui_conf_author_lb type='str'>Author</gui_conf_author_lb> <widget_lblDrop type='str'>Drop</widget_lblDrop> - <ChangeD type='str'>The battery level dropped and raised</ChangeD> - <absolute_threshold type='str'>Weak batteries </absolute_threshold> - <lblMotors type='str'>Disable measurement when the motors are running</lblMotors> + <conf_lblNotified type='str'>Notified ?</conf_lblNotified> + <gui_conf_window_title type='str'>Parameters</gui_conf_window_title> + <widget_lblBoth type='str'>Both direction</widget_lblBoth> <conf_lblDecrease type='str'>Decrease</conf_lblDecrease> - <lblHighThreshold type='str'>Upper limit</lblHighThreshold> <widget_lblValue type='str'>Value (V)</widget_lblValue> <conf_lblDefaultBehavior type='str'>Default behavior</conf_lblDefaultBehavior> - <widget_lblDisplayThreshold type='str'>Display threshold on graph</widget_lblDisplayThreshold> - <conf_lblBehavior type='str'>Behavior script</conf_lblBehavior> + <speaker_name type='str'>Ryan8k</speaker_name> <plug type='str'>and the power supply is plugged</plug> - <gui_conf_remote_set_bt type='str'>Set</gui_conf_remote_set_bt> + <absolute_threshold type='str'>Weak batteries </absolute_threshold> <widget_lblChange type='str'>Change</widget_lblChange> <name_to_read type='str'>Battery monitor</name_to_read> - <gui_conf_window_title type='str'>Parameters</gui_conf_window_title> + <lblHighThreshold type='str'>Upper limit</lblHighThreshold> + <conf_lblNotNotified type='str'>Not notified</conf_lblNotNotified> <Drop type='str'>The battery level dropped</Drop> <conf_lblDrop type='str'>Drop</conf_lblDrop> - <conf_lblNotNotified type='str'>Not notified</conf_lblNotNotified> + <ChangeD type='str'>The battery level dropped and raised</ChangeD> <Raise type='str'>The battery level raised</Raise> - <conf_lblNotified type='str'>Notified ?</conf_lblNotified> + <conf_lblType type='str'>Type</conf_lblType> <widget_lblSet type='str'>Add to config</widget_lblSet> <Decrease type='str'>The battery level passed below the threshold</Decrease> - <conf_lblValue type='str'>Value (V)</conf_lblValue> + <widget_lblDisplayThreshold type='str'>Display threshold on graph</widget_lblDisplayThreshold> <conf_lblRate type='str'>Refresh rate</conf_lblRate> <widget_lblBehavior type='str'>Enable behavior script</widget_lblBehavior> - <gui_conf_accept_bt type='str'>Accept</gui_conf_accept_bt> - <conf_lblTime type='str'>Time (sec.)</conf_lblTime> + <MainBehavior type='str'>Main behavior</MainBehavior> + <ChangeU type='str'>The battery level raised and dropped</ChangeU> <conf_lblControl type='str'>Control</conf_lblControl> - <widget_lblTest type='str'>Notifications</widget_lblTest> + <conf_btnRemove type='str'>Remove</conf_btnRemove> <widget_lblThreshold type='str'>Threshold</widget_lblThreshold> </strings> Modified: software/gadgets/light_monitor/trunk/Light_monitor/Scripts/Python/GUI/widget/other.pyp =================================================================== --- software/gadgets/light_monitor/trunk/Light_monitor/Scripts/Python/GUI/widget/other.pyp 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/light_monitor/trunk/Light_monitor/Scripts/Python/GUI/widget/other.pyp 2007-11-15 16:07:07 UTC (rev 705) @@ -47,7 +47,8 @@ self.get_widget('txtValue').set_text(str(tab[0][3])) self.get_widget('txtTime').set_text(str(tab[0][4])) self.get_widget('chkNotify').set_active(tab[0][5]) - self.get_widget('Behavior').set_filename(tab[0][6]) + if tab[0][6] != None: + self.get_widget('Behavior').set_filename(str(tab[0][6])) thread.start_new_thread(self.update, ()) Modified: software/gadgets/light_monitor/trunk/Light_monitor/about.xml =================================================================== --- software/gadgets/light_monitor/trunk/Light_monitor/about.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/light_monitor/trunk/Light_monitor/about.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='UTF-8'?> <about> + <gadget_description type='str'>Light monitor for tux droid</gadget_description> <gadget_author type='str'>Paul Rathgeb</gadget_author> + <gadget_name type='str'>light_monitor</gadget_name> <gadget_version type='str'>0.0.1</gadget_version> - <gadget_name type='str'>light_monitor</gadget_name> - <gadget_description type='str'>Light monitor for tux droid</gadget_description> </about> Modified: software/gadgets/light_monitor/trunk/Light_monitor/settings.xml =================================================================== --- software/gadgets/light_monitor/trunk/Light_monitor/settings.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/light_monitor/trunk/Light_monitor/settings.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -6,17 +6,16 @@ <increase_rad type='bool'>True</increase_rad> <chk_ChangeBehavior type='bool'>False</chk_ChangeBehavior> <changeU_time type='float'>1.0</changeU_time> - <test_tab type='list'>[[1, 0, 0, 10.0, 2.0, False, 'None', False, 0]]</test_tab> + <test_tab type='list'>[[1, 0, 0, 10.0, 2.0, False, None, False, 0]]</test_tab> <changeD_rad type='bool'>False</changeD_rad> <threshold type='float'>50.0</threshold> <decrease_rad type='bool'>False</decrease_rad> - <Sample type='float'>500.0</Sample> + <behavior_file_threshold type='NoneType'>None</behavior_file_threshold> <raise type='float'>10.0</raise> <changeU_rad type='bool'>False</changeU_rad> <threshold_notified type='bool'>False</threshold_notified> <config type='list'>[]</config> <behavior_file_change type='NoneType'>None</behavior_file_change> - <drop_rad type='bool'>True</drop_rad> <raise_rad type='bool'>False</raise_rad> <changeD type='float'>10.0</changeD> <drop_time type='float'>1.0</drop_time> @@ -24,15 +23,17 @@ <changeU type='float'>10.0</changeU> <raise_time type='float'>1.0</raise_time> <drop type='float'>10.0</drop> + <drop_rad type='bool'>True</drop_rad> <MainScript type='str'> </MainScript> - <behavior_file_threshold type='NoneType'>None</behavior_file_threshold> + <Sample type='float'>500.0</Sample> <threshold_chk type='bool'>False</threshold_chk> <Rate type='float'>0.1</Rate> <changeD_time type='float'>1.0</changeD_time> <both_rad type='bool'>False</both_rad> </parameters> <general> + <have_settings_part type='bool'>True</have_settings_part> <gui_state> <widget> <y type='int'>317</y> @@ -47,12 +48,14 @@ </gui_state> <language type='str'>en_US</language> <notified type='bool'>True</notified> + <have_widget_part type='bool'>True</have_widget_part> <notify_delay type='int'>1</notify_delay> <framework_version type='str'>0.0.0</framework_version> <menu_active type='bool'>True</menu_active> <main_priority type='int'>4</main_priority> <speaker type='int'>3</speaker> <pitch type='int'>100</pitch> + <have_main_part type='bool'>True</have_main_part> <notify_priority type='int'>4</notify_priority> </general> </settings> Modified: software/gadgets/light_monitor/trunk/Light_monitor/strings.xml =================================================================== --- software/gadgets/light_monitor/trunk/Light_monitor/strings.xml 2007-11-15 15:03:51 UTC (rev 704) +++ software/gadgets/light_monitor/trunk/Light_monitor/strings.xml 2007-11-15 16:07:07 UTC (rev 705) @@ -1,6 +1,6 @@ <?xml version='1.0' encoding='UTF-8'?> <strings> - <conf_lblSample type='str'>Samples</conf_lblSample> + <gui_conf_remote_title type='str'>Control</gui_conf_remote_title> <conf_lblRaise type='str'>Raise</conf_lblRaise> <conf_lblEvent type='str'>Event</conf_lblEvent> <widget_lblControl type='str'>Control</widget_lblControl> @@ -40,7 +40,7 @@ In the test part with two buttons you can make Tux search for the light source or darkest spot. Two example scripts can be found in /tmp/Light_monitor/Data.</help_text> - <gui_conf_remote_title type='str'>Control</gui_conf_remote_title> + <conf_lblSample type='str'>Samples</conf_lblSample> <widget_lblLight type='str'>Search light</widget_lblLight> <conf_lblNotifiedBehavior type='str'>Notified</conf_lblNotifiedBehavior> <Change type='str'>The light level changed</Change> @@ -53,34 +53,36 @@ <widget_lblSet type='str'>Add to config</widget_lblSet> <conf_lblValue type='str'>Value (%)</conf_lblValue> <conf_lblTime type='str'>Time (sec.)</conf_lblTime> - <widget_lblDark type='str'>Search darkness</widget_lblDark> + <widget_lblTest type='str'>Notifications</widget_lblTest> <conf_lblThreshold type='str'>Threshold</conf_lblThreshold> <gui_conf_accept_bt type='str'>Accept</gui_conf_accept_bt> <power_supply type='str'>You must disconnect the power supply</power_supply> <widget_lblNotified type='str'>Notified</widget_lblNotified> <conf_btnBehavior type='str'>Clear path</conf_btnBehavior> <conf_lblType type='str'>Type</conf_lblType> - <dark2 type='str'>And darker here.</dark2> + <Drop type='str'>The light level dropped</Drop> <widget_lblEvent type='str'>Event</widget_lblEvent> - <widget_lblDecrease type='str'>Decreasing</widget_lblDecrease> - <gui_conf_update_title type='str'>Update</gui_conf_update_title> + <dark4 type='str'>This is the darkest spot.</dark4> + <widget_lblBoth type='str'>Both direction</widget_lblBoth> <gui_conf_remote_set_bt type='str'>Set</gui_conf_remote_set_bt> <search type='str'>I seek ...</search> <conf_lblNotNotified type='str'>Not notified</conf_lblNotNotified> <ChangeD type='str'>The light level dropped and raised</ChangeD> - <widget_lblThreshold type='str'>Threshold</widget_lblThreshold> + <conf_lblNotified type='str'>Notified ?</conf_lblNotified> <light2 type='str'>ow wait, even lighter here.</light2> <light3 type='str'>or here ...</light3> <light1 type='str'>Seeing more light over here.</light1> <light4 type='str'>I think the light is coming from this direction.</light4> <light5 type='str'>I can't find the direction of the light.</light5> <ChangeU type='str'>The light level raised and dropped</ChangeU> + <widget_lblThreshold type='str'>Threshold</widget_lblThreshold> <gui_conf_description_lb type='str'>Description</gui_conf_description_lb> + <widget_lblDark type='str'>Search darkness</widget_lblDark> <Increase type='str'>The light level exceeded the threshold</Increase> <conf_lblBoth type='str'>Both</conf_lblBoth> <conf_lblDecrease type='str'>Decrease</conf_lblDecrease> <gui_conf_version_lb type='str'>Version</gui_conf_version_lb> - <widget_lblBoth type='str'>Both direction</widget_lblBoth> + <gui_conf_update_title type='str'>Update</gui_conf_update_title> <widget_lblValue type='str'>Value (%)</widget_lblValue> <gui_conf_cancel_bt type='str'>Cancel</gui_conf_cancel_bt> <mainscript type='str'>I've found the light !</mainscript> @@ -88,7 +90,6 @@ <widget_lblIncrease type='str'>Increasing</widget_lblIncrease> <conf_btnAdd type='str'>Add</conf_btnAdd> <gui_conf_author_lb type='str'>Author</gui_conf_author_lb> - <widget_lblTest type='str'>Notifications</widget_lblTest> <conf_lblDrop type='str'>Drop</conf_lblDrop> <Raise type='str'>The light level raised</Raise> <Decrease type='str'>The light level passed below the threshold</Decrease> @@ -110,15 +111,14 @@ <conf_btnModify type='str'>Modify</conf_btnModify> <dark1 type='str'>It's pretty dark here.</dark1> <dark3 type='str'>hmm, but it's even more dark over here!</dark3> - <Drop type='str'>The light level dropped</Drop> + <dark2 type='str'>And darker here.</dark2> <dark5 type='str'>I can't find the darkest spot...</dark5> - <dark4 type='str'>This is the darkest spot.</dark4> + <widget_lblDecrease type='str'>Decreasing</widget_lblDecrease> <gui_conf_sample_lb type='str'>Sample :</gui_conf_sample_lb> <disable type='str'>Disable measurement when the eyes are closed</disable> <conf_lblDefaultBehavior type='str'>Default behavior</conf_lblDefaultBehavior> <speaker_name type='str'>Ryan8k</speaker_name> <widget_lblBehavior type='str'>Enable behavior script</widget_lblBehavior> - <conf_lblNotified type='str'>Notified ?</conf_lblNotified> <Threshold type='str'>The light reached the threshold</Threshold> <MainBehavior type='str'>Main behavior</MainBehavior> </strings> Modified: software/gadgets/light_monitor/trunk/Light_monitor.tgf =================================================================== (Binary files differ) |