svn: r9393
This commit is contained in:
parent
e9f8590f25
commit
bea7f00011
@ -1,3 +1,8 @@
|
||||
2007-11-24 Jerome Rapinat <romjerome@yahoo.fr>
|
||||
* src/DataViews/_PersonView.py: TransUtils issue with gettext context
|
||||
* src/glade/gramps.glade: Inconsistent label in "Associations", issue #1390
|
||||
* src/TipOfDay.py: display bold tags, issue #1368
|
||||
|
||||
2007-11-23 Benny Malengier <benny.malengier@gramps-project.org>
|
||||
* src/plugins/rel_nl.py: new half sibling types
|
||||
* src/plugins/rel_it.py: new half sibling types
|
||||
|
@ -98,9 +98,14 @@ class TipOfDay(ManagedWindow.ManagedWindow):
|
||||
|
||||
window.show_all()
|
||||
|
||||
def escape(self,text):
|
||||
text = text.replace('&','&'); # Must be first
|
||||
text = text.replace(' > ',' > '); # Replace standalone > char
|
||||
text = text.replace('"','"') # quotes
|
||||
return text
|
||||
|
||||
def next_tip_cb(self, dummy=None):
|
||||
tip_text = escape(self.tip_list[self.new_index[self.index]],
|
||||
{ '"' : '"' })
|
||||
tip_text = self.escape(self.tip_list[self.new_index[self.index]])
|
||||
self.tip.set_text(_(tip_text))
|
||||
self.tip.set_use_markup(True)
|
||||
if self.index >= len(self.tip_list)-1:
|
||||
|
@ -13862,7 +13862,7 @@ Very High</property>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label650">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">_Relationship:</property>
|
||||
<property name="label" translatable="yes">_Association:</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_CENTER</property>
|
||||
|
Loading…
Reference in New Issue
Block a user