Changeset 130

Show
Ignore:
Timestamp:
01/04/08 18:53:58 (1 year ago)
Author:
vud1
Message:

adding

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pytrainer/trunk/glade/pytrainer.glade

    r123 r130  
    156156                          <property name="label" translatable="yes"> _List View</property> 
    157157                          <property name="use_underline">True</property> 
    158                           <property name="active">False</property> 
     158                          <property name="active">True</property> 
    159159                          <property name="group">classicview_item</property> 
    160160                          <signal name="activate" handler="on_listview_activate" last_modification_time="Thu, 19 Oct 2006 15:37:47 GMT"/> 
     
    168168                          <property name="label" translatable="yes"> _Waypoints Editor View</property> 
    169169                          <property name="use_underline">True</property> 
    170                           <property name="active">False</property> 
     170                          <property name="active">True</property> 
    171171                          <property name="group">classicview_item</property> 
    172172                          <signal name="activate" handler="on_waypointsview_activate" last_modification_time="Tue, 26 Jun 2007 12:01:49 GMT"/> 
     
    202202                        <widget class="GtkMenuItem" id="gps_device_plugins1"> 
    203203                          <property name="visible">True</property> 
    204                           <property name="label" translatable="yes">Gps Device Plugins</property> 
     204                          <property name="label" translatable="yes">GPS Device Plugins</property> 
    205205                          <property name="use_underline">True</property> 
    206206                          <signal name="activate" handler="on_gpsplugins_activate" last_modification_time="Sun, 12 Nov 2006 17:37:52 GMT"/> 
     
    10571057                                                            <widget class="GtkLabel" id="label11144"> 
    10581058                                                              <property name="visible">True</property> 
    1059                                                               <property name="label" translatable="yes">&lt;b&gt;Positive:&lt;/b&gt;</property> 
     1059                                                              <property name="label" translatable="yes">&lt;b&gt;Ascent:&lt;/b&gt;</property> 
    10601060                                                              <property name="use_underline">False</property> 
    10611061                                                              <property name="use_markup">True</property> 
     
    11011101                                                            <widget class="GtkLabel" id="label11145"> 
    11021102                                                              <property name="visible">True</property> 
    1103                                                               <property name="label" translatable="yes">&lt;b&gt;Negative:&lt;/b&gt;</property> 
     1103                                                              <property name="label" translatable="yes">&lt;b&gt;Descent:&lt;/b&gt;</property> 
    11041104                                                              <property name="use_underline">False</property> 
    11051105                                                              <property name="use_markup">True</property> 
     
    11491149                                                    <widget class="GtkLabel" id="label11143"> 
    11501150                                                      <property name="visible">True</property> 
    1151                                                       <property name="label" translatable="yes"> &lt;b&gt;Accumulated Unevenness:&lt;/b&gt; </property> 
     1151                                                      <property name="label" translatable="yes"> &lt;b&gt;Accumulated Altitude Change:&lt;/b&gt; </property> 
    11521152                                                      <property name="use_underline">False</property> 
    11531153                                                      <property name="use_markup">True</property> 
     
    78017801  <property name="height_request">249</property> 
    78027802  <property name="visible">True</property> 
    7803   <property name="title" translatable="yes">window2</property> 
     7803  <property name="title" translatable="yes">Extensions</property> 
    78047804  <property name="type">GTK_WINDOW_TOPLEVEL</property> 
    78057805  <property name="window_position">GTK_WIN_POS_NONE</property> 
  • pytrainer/trunk/pytrainer/gui/windowextensions.py

    r71 r130  
    6868                self.descriptionEntry.set_text(description) 
    6969                if int(status) > 0: 
    70                         self.statusEntry.set_text(_("Active")) 
     70                        self.statusEntry.set_text(_("Enable")) 
    7171                else: 
    72                         self.statusEntry.set_text(_("unActive")) 
     72                        self.statusEntry.set_text(_("Disable")) 
    7373 
    7474        def on_preferences_clicked(self,widget): 
     
    9494                        else: 
    9595                                combobox = gtk.combo_box_new_text() 
    96                                 combobox.append_text("unActive")       
    97                                 combobox.append_text("Active")         
     96                                combobox.append_text("Disable")        
     97                                combobox.append_text("Enable")         
    9898                                combobox.set_active(int(pref[1])) 
    9999                                table.attach(combobox,1,2,i,i+1) 
  • pytrainer/trunk/pytrainer/gui/windowplugins.py

    r47 r130  
    7070                self.descriptionEntry.set_text(description) 
    7171                if int(status) > 0: 
    72                         self.statusEntry.set_text(_("Active")) 
     72                        self.statusEntry.set_text(_("Enable")) 
    7373                else: 
    74                         self.statusEntry.set_text(_("unActive")) 
     74                        self.statusEntry.set_text(_("Disable")) 
    7575 
    7676        def on_preferences_clicked(self,widget): 
     
    9696                        else: 
    9797                                combobox = gtk.combo_box_new_text() 
    98                                 combobox.append_text("unActive")       
    99                                 combobox.append_text("Active")         
     98                                combobox.append_text(_("Disable"))     
     99                                combobox.append_text(_("Enable"))      
    100100                                combobox.set_active(int(pref[1])) 
    101101                                table.attach(combobox,1,2,i,i+1)