Changeset 130
- Timestamp:
- 01/04/08 18:53:58 (1 year ago)
- Files:
-
- pytrainer/trunk/glade/pytrainer.glade (modified) (7 diffs)
- pytrainer/trunk/pytrainer/gui/windowextensions.py (modified) (2 diffs)
- pytrainer/trunk/pytrainer/gui/windowplugins.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pytrainer/trunk/glade/pytrainer.glade
r123 r130 156 156 <property name="label" translatable="yes"> _List View</property> 157 157 <property name="use_underline">True</property> 158 <property name="active"> False</property>158 <property name="active">True</property> 159 159 <property name="group">classicview_item</property> 160 160 <signal name="activate" handler="on_listview_activate" last_modification_time="Thu, 19 Oct 2006 15:37:47 GMT"/> … … 168 168 <property name="label" translatable="yes"> _Waypoints Editor View</property> 169 169 <property name="use_underline">True</property> 170 <property name="active"> False</property>170 <property name="active">True</property> 171 171 <property name="group">classicview_item</property> 172 172 <signal name="activate" handler="on_waypointsview_activate" last_modification_time="Tue, 26 Jun 2007 12:01:49 GMT"/> … … 202 202 <widget class="GtkMenuItem" id="gps_device_plugins1"> 203 203 <property name="visible">True</property> 204 <property name="label" translatable="yes">G psDevice Plugins</property>204 <property name="label" translatable="yes">GPS Device Plugins</property> 205 205 <property name="use_underline">True</property> 206 206 <signal name="activate" handler="on_gpsplugins_activate" last_modification_time="Sun, 12 Nov 2006 17:37:52 GMT"/> … … 1057 1057 <widget class="GtkLabel" id="label11144"> 1058 1058 <property name="visible">True</property> 1059 <property name="label" translatable="yes"><b> Positive:</b></property>1059 <property name="label" translatable="yes"><b>Ascent:</b></property> 1060 1060 <property name="use_underline">False</property> 1061 1061 <property name="use_markup">True</property> … … 1101 1101 <widget class="GtkLabel" id="label11145"> 1102 1102 <property name="visible">True</property> 1103 <property name="label" translatable="yes"><b> Negative:</b></property>1103 <property name="label" translatable="yes"><b>Descent:</b></property> 1104 1104 <property name="use_underline">False</property> 1105 1105 <property name="use_markup">True</property> … … 1149 1149 <widget class="GtkLabel" id="label11143"> 1150 1150 <property name="visible">True</property> 1151 <property name="label" translatable="yes"> <b>Accumulated Unevenness:</b> </property>1151 <property name="label" translatable="yes"> <b>Accumulated Altitude Change:</b> </property> 1152 1152 <property name="use_underline">False</property> 1153 1153 <property name="use_markup">True</property> … … 7801 7801 <property name="height_request">249</property> 7802 7802 <property name="visible">True</property> 7803 <property name="title" translatable="yes"> window2</property>7803 <property name="title" translatable="yes">Extensions</property> 7804 7804 <property name="type">GTK_WINDOW_TOPLEVEL</property> 7805 7805 <property name="window_position">GTK_WIN_POS_NONE</property> pytrainer/trunk/pytrainer/gui/windowextensions.py
r71 r130 68 68 self.descriptionEntry.set_text(description) 69 69 if int(status) > 0: 70 self.statusEntry.set_text(_(" Active"))70 self.statusEntry.set_text(_("Enable")) 71 71 else: 72 self.statusEntry.set_text(_(" unActive"))72 self.statusEntry.set_text(_("Disable")) 73 73 74 74 def on_preferences_clicked(self,widget): … … 94 94 else: 95 95 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") 98 98 combobox.set_active(int(pref[1])) 99 99 table.attach(combobox,1,2,i,i+1) pytrainer/trunk/pytrainer/gui/windowplugins.py
r47 r130 70 70 self.descriptionEntry.set_text(description) 71 71 if int(status) > 0: 72 self.statusEntry.set_text(_(" Active"))72 self.statusEntry.set_text(_("Enable")) 73 73 else: 74 self.statusEntry.set_text(_(" unActive"))74 self.statusEntry.set_text(_("Disable")) 75 75 76 76 def on_preferences_clicked(self,widget): … … 96 96 else: 97 97 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")) 100 100 combobox.set_active(int(pref[1])) 101 101 table.attach(combobox,1,2,i,i+1)
