diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 68f5c939c..b4f8ed4a8 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,10 +1,18 @@ +2005-03-06 Don Allingham + * src/GrampsBSDDB.py: add upgrade to version 3 for new Name type + * src/NameEdit.py: add date editor field + * src/ReadXML.py: read date field attached to a name + * src/WriteXML.py: write date field attached to a name + * src/RelLib.py: add date field to Name + * src/gramps.glade: add date editor field to Name Editor dialog + 2005-03-06 Alex Roitman - * src/EditSource.py (display_references): List source's references - from personal and family gallery objects. + * src/EditSource.py (display_references): List source's references + from personal and family gallery objects. 2005-03-04 Alex Roitman - * src/GenericFilter.py (HasAttribute.apply): Make work when no value - is given; (HasFamilyAttribute.apply): Make work when no value is given. + * src/GenericFilter.py (HasAttribute.apply): Make work when no value + is given; (HasFamilyAttribute.apply): Make work when no value is given. 2005-03-03 Alex Roitman * src/GenericFilter.py (HasAttribute.apply): Fix the rule. diff --git a/gramps2/src/GrampsBSDDB.py b/gramps2/src/GrampsBSDDB.py index 54a5d0e52..b44562086 100644 --- a/gramps2/src/GrampsBSDDB.py +++ b/gramps2/src/GrampsBSDDB.py @@ -33,7 +33,7 @@ from RelLib import * from GrampsDbBase import * from bsddb import dbshelve, db -_DBVERSION = 2 +_DBVERSION = 3 def find_surname(key,data): return str(data[3].get_surname()) @@ -390,4 +390,18 @@ class GrampsBSDDB(GrampsDbBase): self.commit_person(person,None) data = cursor.next() cursor.close() - self.metadata['version'] = 2 + if version < 3: + cursor = self.get_person_cursor() + data = cursor.first() + while data: + handle,info = data + person = Person() + person.unserialize(info) + + person.primary_name.date = None + for name in person.alternate_names: + name.date = None + self.commit_person(person,None) + data = cursor.next() + cursor.close() + self.metadata['version'] = 3 diff --git a/gramps2/src/NameEdit.py b/gramps2/src/NameEdit.py index 15c22312c..5669860e4 100644 --- a/gramps2/src/NameEdit.py +++ b/gramps2/src/NameEdit.py @@ -46,6 +46,8 @@ import AutoComp import Sources import RelLib import NameDisplay +import DateEdit +import DateHandler #------------------------------------------------------------------------- # @@ -81,6 +83,13 @@ class NameEditor: self.suffix_field = self.top.get_widget("alt_suffix") self.patronymic_field = self.top.get_widget("patronymic") self.combo = self.top.get_widget("alt_surname_list") + self.date = self.top.get_widget('date') + self.date_obj = self.name.get_date_object() + self.date.set_text(DateHandler.displayer.display(self.date_obj)) + + self.date_check = DateEdit.DateEdit( + self.date_obj, self.date, + self.top.get_widget("date_stat"), self.window) AutoComp.fill_combo(self.combo,self.parent.db.get_surname_list()) self.surname_field = self.combo.get_child() diff --git a/gramps2/src/ReadXML.py b/gramps2/src/ReadXML.py index ad8048365..d0feeba07 100644 --- a/gramps2/src/ReadXML.py +++ b/gramps2/src/ReadXML.py @@ -154,7 +154,7 @@ def importData(database, filename, callback=None,cl=0,use_trans=True): for m_id in database.get_media_object_handles(): mobject = database.get_object_from_handle(m_id) oldfile = mobject.get_path() - if oldfile[0] != '/': + if oldfile and oldfile[0] != '/': if first: os.mkdir(img_dir) first = 0 @@ -979,6 +979,8 @@ class GrampsParser: dv = self.object.get_date_object() elif self.address: dv = self.address.get_date_object() + elif self.name: + dv = self.name.get_date_object() else: dv = self.event.get_date_object() @@ -1031,6 +1033,8 @@ class GrampsParser: dv = self.object.get_date_object() elif self.address: dv = self.address.get_date_object() + elif self.name: + dv = self.name.get_date_object() else: dv = self.event.get_date_object() diff --git a/gramps2/src/RelLib.py b/gramps2/src/RelLib.py index 931ae9101..ec806f9b3 100644 --- a/gramps2/src/RelLib.py +++ b/gramps2/src/RelLib.py @@ -2629,6 +2629,10 @@ class Name(DataObj): self.group_as = source.group_as self.sort_as = source.sort_as self.display_as = source.display_as + if source.date: + self.date = Date.Date(source.date) + else: + self.date = None else: self.first_name = "" self.surname = "" @@ -2641,6 +2645,7 @@ class Name(DataObj): self.group_as = "" self.sort_as = self.DEF self.display_as = self.DEF + self.date = None def set_group_as(self,name): """ @@ -2886,6 +2891,66 @@ class Name(DataObj): index += 1 return True + def set_date(self, date) : + """ + Sets the date of the L{Name} instance. The date is parsed into + a L{Date} instance. + + @param date: String representation of a date. The locale specific + L{DateParser} is used to parse the string into a GRAMPS L{Date} + object. + @type date: str + """ + self.date = DateHandler.parser.parse(date) + + def get_date(self) : + """ + Returns a string representation of the date of the L{Name} instance + based off the default date display format determined by the + locale's L{DateDisplay} instance. + + @return: Returns a string representing the L{Name}'s date + @rtype: str + """ + if self.date: + return DateHandler.displayer.display(self.date) + return u"" + + def get_quote_date(self) : + """ + Returns a string representation of the date of the L{Name} instance + based off the default date display format determined by the + locale's L{DateDisplay} instance. The date is enclosed in + quotes if the L{Date} is not a valid date. + + @return: Returns a string representing the L{Name}'s date + @rtype: str + """ + if self.date: + return DateHandler.displayer.quote_display(self.date) + return u"" + + def get_date_object(self): + """ + Returns the L{Date} object associated with the L{Name}. + + @return: Returns a L{Name}'s L{Date} instance. + @rtype: L{Date} + """ + if not self.date: + self.date = Date.Date() + return self.date + + def set_date_object(self,date): + """ + Sets the L{Date} object associated with the L{Name}. + + @param date: L{Date} instance to be assigned to the L{Name} + @type date: L{Date} + """ + self.date = date + + class Url: """Contains information related to internet Uniform Resource Locators, allowing gramps to store information about internet resources""" diff --git a/gramps2/src/WriteXML.py b/gramps2/src/WriteXML.py index 955a8a42d..1ee5943bc 100644 --- a/gramps2/src/WriteXML.py +++ b/gramps2/src/WriteXML.py @@ -674,6 +674,8 @@ class XmlWriter: self.write_line("suffix",name.get_suffix(),index+1) self.write_line("patronymic",name.get_patronymic(),index+1) self.write_line("title",name.get_title(),index+1) + if name.date: + self.write_date(name.date,4) if name.get_note() != "": self.write_note("note",name.get_note_object(),index+1) for s in name.get_source_references(): diff --git a/gramps2/src/gramps.glade b/gramps2/src/gramps.glade index 7fb1d722a..15049139d 100644 --- a/gramps2/src/gramps.glade +++ b/gramps2/src/gramps.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True True @@ -1018,6 +1019,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1067,6 +1071,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1116,6 +1123,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1165,6 +1175,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1214,6 +1227,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1263,6 +1279,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1380,6 +1399,8 @@ False True False + False + False @@ -1410,6 +1431,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1699,6 +1723,8 @@ False True False + False + False @@ -1823,6 +1849,9 @@ 0 chlist PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1849,6 +1878,9 @@ 0 ap_data PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1875,6 +1907,9 @@ 0 ap_parents PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1901,6 +1936,9 @@ 0 sp_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1927,6 +1965,9 @@ 0 sp_parents PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1957,6 +1998,8 @@ True True False + False + False @@ -1988,6 +2031,8 @@ False True False + False + False @@ -2019,6 +2064,8 @@ False True False + False + False @@ -2050,6 +2097,8 @@ True True False + False + False @@ -2206,6 +2255,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2241,6 +2293,8 @@ True True False + False + False @@ -2268,6 +2322,9 @@ 0 chlist2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2298,6 +2355,8 @@ True True False + False + False @@ -2329,6 +2388,8 @@ False True False + False + False @@ -2360,6 +2421,8 @@ False True False + False + False @@ -2391,6 +2454,8 @@ False True False + False + False @@ -2542,6 +2607,9 @@ 0 sp_parents2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2665,6 +2733,9 @@ 0 sp_list2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2788,6 +2859,9 @@ 0 ap_data2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2814,6 +2888,9 @@ 0 ap_parents2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2972,6 +3049,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3020,6 +3100,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3050,6 +3133,8 @@ False True False + False + False @@ -3080,6 +3165,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3110,6 +3198,8 @@ False True False + False + False @@ -3140,6 +3230,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3192,6 +3285,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3229,6 +3325,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3255,6 +3354,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3279,6 +3381,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3303,6 +3408,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3329,6 +3437,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3355,6 +3466,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3381,6 +3495,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3405,6 +3522,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3429,6 +3549,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3453,6 +3576,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3479,6 +3605,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3523,6 +3652,8 @@ False True False + False + False @@ -3553,6 +3684,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3605,6 +3739,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3682,6 +3817,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3721,6 +3859,8 @@ False True False + False + False @@ -3829,6 +3969,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3908,6 +4051,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3993,6 +4137,9 @@ Other 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4031,6 +4178,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4056,6 +4206,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4081,6 +4234,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4107,6 +4263,9 @@ Other 0 father_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4203,6 +4362,9 @@ Other 0 mother_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4228,6 +4390,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4258,6 +4423,8 @@ Other False True False + False + False @@ -4288,6 +4455,8 @@ Other False True False + False + False @@ -4438,6 +4607,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4523,6 +4693,9 @@ Other 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4569,6 +4742,8 @@ Other False True False + False + False @@ -4669,6 +4844,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4694,6 +4872,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4762,6 +4943,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4849,6 +5031,9 @@ Other 0 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4894,6 +5079,9 @@ Other 0 source_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4920,6 +5108,9 @@ Other 0 author PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4992,6 +5183,9 @@ Other 0 pubinfo PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5060,6 +5254,9 @@ Other 0 abbrev PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5091,6 +5288,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5162,6 +5362,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5247,6 +5450,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5278,6 +5484,8 @@ Other False True False + False + False @@ -5378,6 +5586,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5592,6 +5803,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5616,6 +5830,8 @@ Other False True False + False + False @@ -5639,6 +5855,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5678,6 +5897,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5764,6 +5984,9 @@ Other 10 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5837,6 +6060,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5919,6 +6143,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -5957,6 +6184,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5982,6 +6212,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6006,6 +6239,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6031,6 +6267,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6056,6 +6295,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -6084,6 +6326,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6109,6 +6354,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6134,6 +6382,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6158,6 +6409,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6263,6 +6517,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6354,6 +6609,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6390,6 +6648,9 @@ Other 0 entry PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -6448,6 +6709,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6525,6 +6787,8 @@ Other True True False + False + False @@ -6550,6 +6814,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6585,6 +6852,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6666,6 +6934,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6725,6 +6996,9 @@ Other 0 givenName PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6751,6 +7025,9 @@ Other 0 surname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6777,6 +7054,9 @@ Other 0 prefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6803,6 +7083,9 @@ Other 0 suffix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6829,6 +7112,9 @@ Other 0 title PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6855,6 +7141,9 @@ Other 0 nickname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6880,6 +7169,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6906,6 +7198,9 @@ Other 0 birthDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6997,6 +7292,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7100,6 +7398,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7126,6 +7427,9 @@ Other 0 gid PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7173,6 +7477,9 @@ Other 0 birth_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7198,6 +7505,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7224,6 +7534,9 @@ Other 0 deathDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -7253,6 +7566,9 @@ Other 0 death_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7525,6 +7841,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7549,6 +7868,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7689,6 +8011,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7786,6 +8111,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7828,6 +8156,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7853,6 +8184,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7878,6 +8212,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7903,6 +8240,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7928,6 +8268,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7953,6 +8296,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7978,6 +8324,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8003,6 +8352,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8028,6 +8380,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8053,6 +8408,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8078,6 +8436,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8102,6 +8463,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8126,6 +8490,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8150,6 +8517,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8174,6 +8544,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8198,6 +8571,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8222,6 +8598,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8246,6 +8625,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8309,6 +8691,8 @@ Other False True False + False + False @@ -8448,6 +8832,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8490,6 +8877,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8515,6 +8905,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8540,6 +8933,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8565,6 +8961,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8590,6 +8989,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8615,6 +9017,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8640,6 +9045,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8665,6 +9073,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8690,6 +9101,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8715,6 +9129,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8740,6 +9157,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8765,6 +9185,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8790,6 +9213,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8815,6 +9241,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8839,6 +9268,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8863,6 +9295,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8906,6 +9341,8 @@ Other True True False + False + False @@ -9052,6 +9489,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9094,6 +9534,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9119,6 +9562,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9144,6 +9590,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9169,6 +9618,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9194,6 +9646,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9219,6 +9674,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -9244,6 +9702,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9269,6 +9730,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9293,6 +9757,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9317,6 +9784,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9360,6 +9830,8 @@ Other False True False + False + False @@ -9506,6 +9978,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9542,6 +10017,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9567,6 +10045,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9592,6 +10073,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9617,6 +10101,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9642,6 +10129,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9667,6 +10157,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9692,6 +10185,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9717,6 +10213,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9742,6 +10241,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9767,6 +10269,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9792,6 +10297,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9817,6 +10325,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9842,6 +10353,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9867,6 +10381,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9892,6 +10409,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9916,6 +10436,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9940,6 +10463,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9965,6 +10491,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9990,6 +10519,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10015,6 +10547,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10090,6 +10625,8 @@ Other False True False + False + False @@ -10236,6 +10773,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10310,6 +10850,9 @@ Other 0 flowed PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10395,6 +10938,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10425,6 +10971,8 @@ Other False True False + False + False @@ -10552,6 +11100,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10751,6 +11302,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10787,6 +11341,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10812,6 +11369,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10837,6 +11397,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10862,6 +11425,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10886,6 +11452,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10929,6 +11498,8 @@ Other False True False + False + False @@ -11096,6 +11667,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11126,6 +11700,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11173,6 +11750,9 @@ Other 0 ldsbapdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11201,6 +11781,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -11250,6 +11833,9 @@ Other 0 lds_bap_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11319,6 +11905,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11345,6 +11934,9 @@ Other 0 endowdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -11374,6 +11966,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11400,6 +11995,9 @@ Other 0 lds_end_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11511,6 +12109,9 @@ Other 0 sealdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11560,6 +12161,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11606,6 +12210,9 @@ Other 0 lds_seal_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11676,6 +12283,9 @@ Other 0 sealparents PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11701,6 +12311,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11843,6 +12456,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11874,6 +12490,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -11962,6 +12579,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12011,6 +12631,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12037,6 +12660,9 @@ Other 0 gid PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12103,6 +12729,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12128,6 +12757,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12188,6 +12820,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12224,6 +12859,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12249,6 +12887,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12274,6 +12915,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12299,6 +12943,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12324,6 +12971,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12349,6 +12999,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12374,6 +13027,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12399,6 +13055,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12423,6 +13082,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12448,6 +13110,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12473,6 +13138,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12497,6 +13165,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12521,6 +13192,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12546,6 +13220,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12571,6 +13248,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12595,6 +13275,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12637,6 +13320,8 @@ Other False True False + False + False @@ -12773,6 +13458,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12809,6 +13497,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12834,6 +13525,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12859,6 +13553,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12884,6 +13581,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12909,6 +13609,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12934,6 +13637,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12959,6 +13665,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12984,6 +13693,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13008,6 +13720,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -13032,6 +13747,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13074,6 +13792,8 @@ Other False True False + False + False @@ -13210,6 +13930,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13281,6 +14004,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13366,6 +14092,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13396,6 +14125,8 @@ Other False True False + False + False @@ -13520,6 +14251,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13706,6 +14440,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13742,6 +14479,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13767,6 +14507,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13792,6 +14535,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13817,6 +14563,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13965,6 +14714,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14004,6 +14756,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -14089,6 +14842,9 @@ Other 0 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14133,6 +14889,9 @@ Other 0 place_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14162,6 +14921,9 @@ Other 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14191,6 +14953,9 @@ Other 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14220,6 +14985,9 @@ Other 0 county PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14249,6 +15017,9 @@ Other 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14278,6 +15049,9 @@ Other 0 longitude PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14307,6 +15081,9 @@ Other 0 latitude PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14336,6 +15113,9 @@ Other 0 parish PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -14534,6 +15314,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14560,6 +15343,9 @@ Other 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14607,6 +15393,9 @@ Other 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14653,6 +15442,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14678,6 +15470,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14709,6 +15504,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14745,6 +15543,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14770,6 +15571,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14795,6 +15599,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14820,6 +15627,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14845,6 +15655,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14870,6 +15683,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14896,6 +15712,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14923,6 +15742,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14950,6 +15772,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14975,6 +15800,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15001,6 +15829,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -15025,6 +15856,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15050,6 +15884,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15077,6 +15914,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -15102,6 +15942,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -15144,6 +15987,8 @@ Other False True False + False + False @@ -15291,6 +16136,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15362,6 +16210,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15447,6 +16298,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15483,6 +16337,8 @@ Other False True False + False + False @@ -15627,6 +16483,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15839,6 +16698,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15875,6 +16737,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15900,6 +16765,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15925,6 +16793,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15949,6 +16820,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15974,6 +16848,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16016,6 +16893,8 @@ Other False True False + False + False @@ -16190,6 +17069,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16244,6 +17126,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16280,6 +17165,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -16351,6 +17237,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -16389,6 +17278,8 @@ Other False True False + False + False @@ -16468,6 +17359,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16498,6 +17392,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16534,6 +17431,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16582,6 +17482,9 @@ Other 3 lastnamegen PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16636,6 +17539,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16672,6 +17578,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16743,6 +17652,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16802,6 +17714,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16862,6 +17777,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16887,6 +17805,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16958,6 +17879,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17066,6 +17990,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17103,6 +18030,9 @@ Text Beside Icons 5 date_format PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17128,6 +18058,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17182,6 +18115,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17219,6 +18155,9 @@ Text Beside Icons 0 resname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17245,6 +18184,9 @@ Text Beside Icons 0 resaddr PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17271,6 +18213,9 @@ Text Beside Icons 0 rescity PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17297,6 +18242,9 @@ Text Beside Icons 0 resstate PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17323,6 +18271,9 @@ Text Beside Icons 0 rescountry PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17349,6 +18300,9 @@ Text Beside Icons 0 respostal PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17375,6 +18329,9 @@ Text Beside Icons 0 resphone PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17401,6 +18358,9 @@ Text Beside Icons 0 resemail PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17594,6 +18554,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17632,6 +18595,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17669,6 +18635,9 @@ Text Beside Icons 2 iprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17695,6 +18664,9 @@ Text Beside Icons 2 fprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17721,6 +18693,9 @@ Text Beside Icons 2 pprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17747,6 +18722,9 @@ Text Beside Icons 2 sprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17773,6 +18751,9 @@ Text Beside Icons 2 oprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17903,6 +18884,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17941,6 +18925,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17992,6 +18979,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18077,6 +19065,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -18116,6 +19107,9 @@ Text Beside Icons 0 conf PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18142,6 +19136,9 @@ Text Beside Icons 0 spage PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18168,6 +19165,9 @@ Text Beside Icons 0 sdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18196,6 +19196,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18224,6 +19227,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18252,6 +19258,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18277,6 +19286,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18302,6 +19314,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18327,6 +19342,9 @@ Text Beside Icons 3 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18352,6 +19370,9 @@ Text Beside Icons 3 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18377,6 +19398,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18402,6 +19426,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18698,6 +19725,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18782,6 +19810,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -18815,6 +19846,8 @@ Very High False True False + False + False @@ -18966,6 +19999,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19034,6 +20068,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19060,6 +20097,8 @@ Very High False True False + False + False @@ -19113,6 +20152,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19180,6 +20220,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19228,6 +20271,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -19265,6 +20311,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19291,6 +20340,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19315,6 +20367,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19339,6 +20394,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19365,6 +20423,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19391,6 +20452,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19417,6 +20481,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19441,6 +20508,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19465,6 +20535,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19489,6 +20562,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19515,6 +20591,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19559,6 +20638,8 @@ Very High False True False + False + False @@ -19595,6 +20676,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19664,6 +20746,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19696,6 +20781,8 @@ Very High False True False + False + False @@ -19816,6 +20903,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19886,6 +20974,9 @@ Very High 5 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -19915,6 +21006,9 @@ Very High 0 style_name PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19986,6 +21080,8 @@ Very High False True False + False + False @@ -20026,6 +21122,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20048,6 +21147,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20076,6 +21178,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20106,6 +21211,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -20238,6 +21346,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20263,6 +21374,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20288,6 +21402,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20313,6 +21430,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20339,6 +21459,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20415,6 +21538,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20465,6 +21591,9 @@ Very High 0 rmargin PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20494,6 +21623,9 @@ Very High 0 lmargin PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20523,6 +21655,9 @@ Very High 0 pad PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20551,6 +21686,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20576,6 +21714,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20601,6 +21742,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20780,6 +21924,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20805,6 +21952,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20831,6 +21981,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20856,6 +22009,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20881,6 +22037,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20994,6 +22153,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21040,6 +22202,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21066,6 +22231,9 @@ Very High 0 pad PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21097,6 +22265,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21142,6 +22313,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21224,6 +22396,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -21292,6 +22467,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21340,6 +22518,9 @@ Very High 0 photoDescription PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21427,6 +22608,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21513,6 +22695,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21560,6 +22745,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21597,6 +22785,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21622,6 +22813,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21647,6 +22841,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21672,6 +22869,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21697,6 +22897,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21722,6 +22925,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21748,6 +22954,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21773,6 +22982,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21833,6 +23045,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21858,6 +23073,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21883,6 +23101,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21908,6 +23129,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -22017,6 +23241,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22064,6 +23291,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22095,6 +23325,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22166,6 +23399,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22251,6 +23487,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22307,6 +23546,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22343,6 +23585,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22368,6 +23613,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22393,6 +23641,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22417,6 +23668,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22442,6 +23696,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22485,6 +23742,8 @@ Very High False True False + False + False @@ -22634,6 +23893,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22670,6 +23932,8 @@ Very High False True False + False + False @@ -22814,6 +24078,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22853,6 +24120,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22939,6 +24207,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22986,6 +24257,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -23023,6 +24297,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23048,6 +24325,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23073,6 +24353,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23098,6 +24381,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23122,6 +24408,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23147,6 +24436,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23214,6 +24506,9 @@ Very High 0 description PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23260,6 +24555,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23286,6 +24584,9 @@ Very High 0 place PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23405,6 +24706,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23441,6 +24745,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23466,6 +24773,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23490,6 +24800,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23515,6 +24828,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23540,6 +24856,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23582,6 +24901,8 @@ Very High False True False + False + False @@ -23732,6 +25053,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23803,6 +25127,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23888,6 +25215,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23911,6 +25241,8 @@ Very High False True False + False + False @@ -23934,6 +25266,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23970,6 +25305,8 @@ Very High False True False + False + False @@ -24114,6 +25451,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24150,6 +25490,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24208,6 +25549,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24233,6 +25577,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24286,6 +25633,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24372,6 +25720,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24417,6 +25768,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24472,6 +25826,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24543,6 +25898,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24588,6 +25946,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24621,6 +25982,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24692,6 +26054,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24737,6 +26102,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24770,6 +26138,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24828,6 +26197,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24873,6 +26245,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24906,6 +26281,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24964,6 +26340,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25009,6 +26388,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25042,6 +26424,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25114,6 +26497,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25203,6 +26589,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25249,6 +26638,9 @@ Very High 6 24 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25294,6 +26686,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25353,6 +26748,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25441,6 +26837,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25484,6 +26883,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25510,6 +26912,9 @@ Very High 0 eventDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25539,6 +26944,9 @@ Very High 0 event_description PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25568,6 +26976,9 @@ Very High 3 eventPlace PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25597,6 +27008,9 @@ Very High 0 eventCause PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25781,6 +27195,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25817,6 +27234,8 @@ Very High False True False + False + False @@ -25961,6 +27380,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26035,6 +27457,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26120,6 +27545,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26157,6 +27585,8 @@ Very High False True False + False + False @@ -26301,6 +27731,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26513,6 +27946,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26551,6 +27987,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26636,6 +28073,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26679,6 +28119,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26705,6 +28148,9 @@ Very High 0 attr_value PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26799,6 +28245,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26835,6 +28284,8 @@ Very High False True False + False + False @@ -26979,6 +28430,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27051,6 +28505,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27136,6 +28593,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27174,6 +28634,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27259,6 +28720,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27292,6 +28756,9 @@ Very High 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27321,6 +28788,9 @@ Very High 0 county PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27350,6 +28820,9 @@ Very High 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -27380,6 +28853,9 @@ Very High 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -27410,6 +28886,9 @@ Very High 0 parish PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27545,6 +29024,9 @@ Very High 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27592,6 +29074,9 @@ Very High 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27656,6 +29141,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27742,6 +29228,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27786,6 +29275,9 @@ Very High 0 address_start PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27815,6 +29307,9 @@ Very High 0 street PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27844,6 +29339,9 @@ Very High 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27873,6 +29371,9 @@ Very High 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27902,6 +29403,9 @@ Very High 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27931,6 +29435,9 @@ Very High 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28109,6 +29616,9 @@ Very High 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28188,6 +29698,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28224,6 +29737,8 @@ Very High False True False + False + False @@ -28368,6 +29883,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28440,6 +29958,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28525,6 +30046,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28563,6 +30087,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28649,6 +30174,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28682,6 +30210,9 @@ Very High 0 url_addr PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28711,6 +30242,9 @@ Very High 0 url_des PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28836,6 +30370,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -28923,6 +30458,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28946,7 +30484,7 @@ Very High 12 True - 13 + 14 4 False 6 @@ -28967,6 +30505,9 @@ Very High 0 alt_given PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28996,6 +30537,9 @@ Very High 0 alt_suffix PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29024,6 +30568,9 @@ Very High 1 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29053,6 +30600,9 @@ Very High 0 alt_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29082,8 +30632,8 @@ Very High 2 3 - 12 - 13 + 13 + 14 fill @@ -29104,6 +30654,9 @@ Very High 0 alt_prefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29218,6 +30771,9 @@ Very High 0 patronymic PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29246,6 +30802,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29316,6 +30875,9 @@ Very High 0 group_as PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29344,6 +30906,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29394,6 +30959,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29422,6 +30990,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29447,6 +31018,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29536,6 +31110,94 @@ Family name Given name fill + + + + True + Dat_e: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 1 + 2 + 12 + 13 + fill + + + + + + + True + False + 0 + + + + True + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + Invoke date editor + True + GTK_RELIEF_NONE + True + + + + True + 0.5 + 0.5 + 0 + 0 + + + + + 0 + False + False + + + + + 2 + 3 + 12 + 13 + fill + fill + + False @@ -29557,6 +31219,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29594,6 +31259,8 @@ Family name Given name False True False + False + False @@ -29738,6 +31405,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29811,6 +31481,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29896,6 +31569,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29934,6 +31610,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30018,6 +31695,9 @@ Family name Given name 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30051,6 +31731,9 @@ Family name Given name 0 name PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30080,6 +31763,9 @@ Family name Given name 0 scrolledwindow30 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30260,6 +31946,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -30331,6 +32018,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30431,6 +32121,9 @@ Family name Given name 6 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30455,6 +32148,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30489,6 +32185,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -30514,6 +32211,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30539,6 +32239,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30564,6 +32267,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30611,6 +32317,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30691,6 +32398,9 @@ Family name Given name 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30726,6 +32436,9 @@ Family name Given name 0 calendar_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30779,6 +32492,9 @@ Family name Given name 0 quality_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30824,6 +32540,9 @@ Family name Given name 0 type_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30868,6 +32587,9 @@ Family name Given name 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30894,6 +32616,9 @@ Family name Given name 0 start_day PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30920,6 +32645,9 @@ Family name Given name 0 start_month_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30946,6 +32674,9 @@ Family name Given name 0 start_year PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -31032,6 +32763,9 @@ Family name Given name 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -31058,6 +32792,9 @@ Family name Given name 0 stop_day PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -31084,6 +32821,9 @@ Family name Given name 0 stop_month_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -31110,6 +32850,9 @@ Family name Given name 0 stop_year PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -31210,6 +32953,9 @@ Family name Given name 0 date_text_entry PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -31276,6 +33022,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31344,6 +33091,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31372,6 +33122,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0