diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9cdda6e76..0d1818134 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,9 @@ +2005-06-18 Don Allingham + * src/ChooseParents.py: build custom filter rules to speed up + loading the data, provide watch cursor to provide feedback to + the user. + * src/Date.py: provide sort data recalculation function + 2005-06-19 Eero Tamminen * src/plugins/StatisticsChart.py: Changed the entry fields to SpinButtons as suggested by Alex diff --git a/gramps2/src/ChooseParents.py b/gramps2/src/ChooseParents.py index 5af473945..75a4e39e9 100644 --- a/gramps2/src/ChooseParents.py +++ b/gramps2/src/ChooseParents.py @@ -42,6 +42,7 @@ from gettext import gettext as _ #------------------------------------------------------------------------- import gtk.glade import gtk.gdk +import gobject import gnome #------------------------------------------------------------------------- @@ -98,11 +99,17 @@ class ChooseParents: # set default filters self.all_males_filter = GenericFilter.GenericFilter() self.all_males_filter.add_rule(GenericFilter.IsMale([])) - self.likely_males_filter = self.build_likely(True) self.all_females_filter = GenericFilter.GenericFilter() self.all_females_filter.add_rule(GenericFilter.IsFemale([])) - self.likely_females_filter = self.build_likely(False) + + bh = person.birth_handle + if bh and self.db.get_event_from_handle(bh).date.sortval != 0: + self.likely_females_filter = self.build_likely(False) + self.likely_males_filter = self.build_likely(True) + else: + self.likely_males_filter = self.all_males_filter + self.likely_females_filter = self.all_females_filter self.father_filter = self.likely_males_filter self.mother_filter = self.likely_females_filter @@ -116,6 +123,7 @@ class ChooseParents: self.glade = gtk.glade.XML(const.gladeFile,"familyDialog","gramps") self.window = self.glade.get_widget("familyDialog") + self.window.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH)) name = NameDisplay.displayer.display(self.person) self.title_text = _("Choose the Parents of %s") % name @@ -133,9 +141,8 @@ class ChooseParents: self.showallf = self.glade.get_widget('showallf') self.showallm = self.glade.get_widget('showallm') self.add_itself_to_menu() - - self.build_father_list() - self.build_mother_list() + + gobject.idle_add(self.draw_list) if gtk.gdk.screen_height() > 700: self.father_list.set_size_request(-1,150) @@ -156,7 +163,6 @@ class ChooseParents: self.type = RelLib.Family.MARRIED self.prel.set_active(self.type) - self.redrawm() self.glade.signal_autoconnect({ "on_add_parent_clicked" : self.add_parent_clicked, @@ -175,7 +181,20 @@ class ChooseParents: self.window.show() + def draw_list(self): + self.build_father_list() + self.build_mother_list() + self.window.window.set_cursor(None) + def build_likely(self,is_male): + filt = GenericFilter.GenericFilter() + if is_male: + filt.add_rule(LikelyFather([self.person.handle])) + else: + filt.add_rule(LikelyMother([self.person.handle])) + return filt + + def build_likely2(self,is_male): birth_handle = self.person.get_birth_handle() filt = GenericFilter.GenericFilter() @@ -227,21 +246,33 @@ class ChooseParents: self.redrawm() def add_columns(self,tree): + + tree.set_fixed_height_mode(True) column = gtk.TreeViewColumn(_('Name'), self.renderer,text=0) column.set_resizable(True) column.set_clickable(True) column.set_sort_column_id(0) - column.set_min_width(225) + + column.set_fixed_width(255) + column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) + tree.append_column(column) column = gtk.TreeViewColumn(_('ID'), self.renderer,text=1) column.set_resizable(True) column.set_clickable(True) column.set_sort_column_id(1) - column.set_min_width(75) + + column.set_fixed_width(75) + column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) + #column.set_min_width(75) + tree.append_column(column) column = gtk.TreeViewColumn(_('Birth date'), self.renderer,text=3) #column.set_resizable(True) column.set_clickable(True) + column.set_fixed_width(150) + column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) + tree.append_column(column) def on_delete_event(self,obj,b): @@ -284,8 +315,22 @@ class ChooseParents: gnome.help_display('gramps-manual','gramps-edit-quick') def person_added(self,handle_list): - self.person_added_base(handle_list,self.father_model, self.father_filter) - self.person_added_base(handle_list,self.mother_model, self.mother_filter) + update_father = False + update_mother = False + + for handle in handle_list: + person = self.db.find_person_from_handle(handle) + if person.get_gender() == RelLib.Person.MALE: + update_father = True + elif person.get_gender() == RelLib.Person.FEMALE: + update_mother = True + + if update_father: + self.person_added_base(handle_list,self.father_model, + self.father_filter) + if update_mother: + self.person_added_base(handle_list,self.mother_model, + self.mother_filter) def person_added_base(self,handle_list,model,data_filter): for node in handle_list: @@ -310,22 +355,22 @@ class ChooseParents: def redrawf(self): """Redraws the potential father list""" self.father_model = PeopleModel.PeopleModel(self.db,self.father_filter) - self.father_list.set_model(self.father_model) if self.type == RelLib.Family.CIVIL_UNION: self.flabel.set_label("%s" % _("Par_ent")) else: self.flabel.set_label("%s" % _("Fath_er")) + self.father_list.set_model(self.father_model) def redrawm(self): """Redraws the potential mother list""" self.mother_model = PeopleModel.PeopleModel(self.db,self.mother_filter) - self.mother_list.set_model(self.mother_model) if self.type == RelLib.Family.CIVIL_UNION: self.mlabel.set_label("%s" % _("Pa_rent")) else: self.mlabel.set_label("%s" % _("Mothe_r")) + self.mother_list.set_model(self.mother_model) def parent_relation_changed(self,obj): """Called everytime the parent relationship information is changed""" @@ -750,3 +795,52 @@ class ModifyParents: trans = self.db.transaction_begin() self.db.commit_person(self.person,trans) self.db.transaction_commit(trans,_("Modify Parents")) + +#------------------------------------------------------------------------- +# +# Likely Filters +# +#------------------------------------------------------------------------- +class LikelyFilter(GenericFilter.Rule): + + category = _('General filters') + + def prepare(self,db): + person = db.get_person_from_handle(self.list[0]) + birth = db.get_event_from_handle(person.birth_handle) + dateobj = Date.Date(birth.date) + year = dateobj.get_year() + dateobj.set_year(year-10) + self.lower = dateobj.sortval + dateobj.set_year(year-70) + self.upper = dateobj.sortval + + def apply(self,db,handle): + person = db.get_person_from_handle(handle) + if person.gender != self.gender: + return False + if not person.birth_handle: + return True + event = db.get_event_from_handle(person.birth_handle) + return (event.date == None or event.date.sortval == 0 or + self.lower > event.date.sortval > self.upper) + +class LikelyFather(LikelyFilter): + + name = _('Likely Father') + description = _('Matches likely fathers') + + def __init__(self,data_list): + GenericFilter.Rule.__init__(self,data_list) + self.gender = RelLib.Person.MALE + + +class LikelyMother(LikelyFilter): + + name = _('Likely Mother') + description = _('Matches likely mothers') + + def __init__(self,data_list): + GenericFilter.Rule.__init__(self,data_list) + self.gender = RelLib.Person.FEMALE + diff --git a/gramps2/src/Date.py b/gramps2/src/Date.py index 7bc6164ae..80ea8fbe1 100644 --- a/gramps2/src/Date.py +++ b/gramps2/src/Date.py @@ -340,6 +340,7 @@ class Date: """ """ self.dateval = self.dateval[0:2] + (year,) + self.dateval[3:] + self.calc_sort_value() def get_year_valid(self): return self._get_low_item_valid(_POS_YR) @@ -458,6 +459,12 @@ class Date: if text: self.text = text + def calc_sort_value(self): + year = max(self.dateval[_POS_YR],1) + month = max(self.dateval[_POS_MON],1) + day = max(self.dateval[_POS_DAY],1) + self.sortval = _calendar_convert[self.calendar](year,month,day) + def convert_calendar(self,calendar): """ Converts the date from the current calendar to the specified diff --git a/gramps2/src/gramps.glade b/gramps2/src/gramps.glade index b931fd24f..203c933dc 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 @@ -1036,6 +1037,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1084,6 +1089,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1132,6 +1141,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1180,6 +1193,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1228,6 +1245,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1276,6 +1297,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1321,6 +1346,8 @@ True + False + True 0 @@ -1342,6 +1369,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1430,6 +1461,9 @@ False False True + False + False + False @@ -1459,6 +1493,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1747,6 +1785,9 @@ True False True + False + False + False @@ -1870,6 +1911,10 @@ 0 0 chlist + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1895,6 +1940,10 @@ 0 0 ap_data + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1920,6 +1969,10 @@ 0 0 ap_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1945,6 +1998,10 @@ 0 0 sp_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1970,6 +2027,10 @@ 0 0 sp_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1999,6 +2060,9 @@ True True True + False + False + False @@ -2029,6 +2093,9 @@ True False True + False + False + False @@ -2059,6 +2126,9 @@ True False True + False + False + False @@ -2089,6 +2159,9 @@ True True True + False + False + False @@ -2244,6 +2317,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2278,6 +2355,9 @@ True True True + False + False + False @@ -2304,6 +2384,10 @@ 0 0 chlist2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2333,6 +2417,9 @@ True True True + False + False + False @@ -2363,6 +2450,9 @@ True False True + False + False + False @@ -2393,6 +2483,9 @@ True False True + False + False + False @@ -2423,6 +2516,9 @@ True False True + False + False + False @@ -2573,6 +2669,10 @@ 0 0 sp_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2695,6 +2795,10 @@ 0 0 sp_list2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2817,6 +2921,10 @@ 0 0 ap_data2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2842,6 +2950,10 @@ 0 0 ap_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2999,6 +3111,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3046,6 +3162,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3075,6 +3195,9 @@ True False True + False + False + False @@ -3104,6 +3227,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3133,6 +3260,9 @@ True False True + False + False + False @@ -3162,6 +3292,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3213,6 +3347,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3249,6 +3387,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3274,6 +3416,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3297,6 +3443,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3320,6 +3470,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3345,6 +3499,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3370,6 +3528,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3395,6 +3557,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3418,6 +3584,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3441,6 +3611,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3464,6 +3638,10 @@ 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3489,6 +3667,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3532,6 +3714,9 @@ True False True + False + False + False @@ -3561,6 +3746,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3613,6 +3802,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3689,6 +3879,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3727,6 +3921,9 @@ False False True + False + False + False @@ -3834,6 +4031,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3853,6 +4054,8 @@ Unmarried Civil Union Unknown Other + False + True 1 @@ -3911,6 +4114,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3995,6 +4199,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4010,7 +4218,7 @@ Other 0 - + 12 True 10 @@ -4032,6 +4240,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4056,6 +4268,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4080,6 +4296,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4105,6 +4325,10 @@ Other 0 0 father_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4200,6 +4424,10 @@ Other 0 0 mother_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4224,6 +4452,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4253,6 +4485,9 @@ Other True False True + False + False + False @@ -4282,6 +4517,9 @@ Other True False True + False + False + False @@ -4342,6 +4580,8 @@ Other True Married + False + True @@ -4357,6 +4597,8 @@ Other True + False + True 2 @@ -4371,6 +4613,8 @@ Other True + False + True 2 @@ -4422,6 +4666,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4506,6 +4751,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4551,6 +4800,9 @@ Other True False True + False + False + False @@ -4650,6 +4902,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4674,6 +4930,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4688,6 +4948,8 @@ Other True + False + True 1 @@ -4701,6 +4963,8 @@ Other True + False + True 1 @@ -4738,6 +5002,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4824,6 +5089,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4868,6 +5137,10 @@ Other 0 0 source_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4893,6 +5166,10 @@ Other 0 0 author + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4964,6 +5241,10 @@ Other 0 0 pubinfo + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5031,6 +5312,10 @@ Other 0 0 abbrev + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5061,6 +5346,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5131,6 +5420,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5215,6 +5508,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5245,6 +5542,9 @@ Other True False True + False + False + False @@ -5344,6 +5644,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5557,6 +5861,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5580,6 +5888,9 @@ Other False False True + False + False + False @@ -5602,6 +5913,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5641,6 +5956,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5726,6 +6042,10 @@ Other 0.5 10 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5799,6 +6119,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5880,6 +6201,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -5917,6 +6242,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5941,6 +6270,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -5964,6 +6297,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5988,6 +6325,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6012,6 +6353,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -6039,6 +6384,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6063,6 +6412,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6087,6 +6440,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6110,6 +6467,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6147,6 +6508,8 @@ Other True + False + True 2 @@ -6162,6 +6525,8 @@ Other True + False + True 2 @@ -6211,6 +6576,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6301,6 +6667,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6336,6 +6706,10 @@ Other 0 0 entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -6394,6 +6768,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6470,6 +6845,9 @@ Other False True True + False + False + False @@ -6494,6 +6872,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6529,6 +6911,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6609,6 +6992,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6667,6 +7054,10 @@ Other 0 0 givenName + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6692,6 +7083,10 @@ Other 0 0 surname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6717,6 +7112,10 @@ Other 0 0 prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6742,6 +7141,10 @@ Other 0 0 suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6767,6 +7170,10 @@ Other 0 0 title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6792,6 +7199,10 @@ Other 0 0 nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6816,6 +7227,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6906,6 +7321,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7008,6 +7427,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7033,6 +7456,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7078,6 +7505,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7092,6 +7523,9 @@ Other True + False + True + True 2 @@ -7213,6 +7647,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7236,6 +7674,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7284,6 +7726,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7367,6 +7813,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7392,6 +7842,10 @@ Other 0 0 birth_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7547,6 +8001,10 @@ Other 0 0 deathDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7663,6 +8121,10 @@ Other 0 0 death_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7740,6 +8202,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7781,6 +8247,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7805,6 +8275,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7829,6 +8303,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7853,6 +8331,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7877,6 +8359,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7901,6 +8387,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7925,6 +8415,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7949,6 +8443,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7973,6 +8471,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7997,6 +8499,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8021,6 +8527,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8044,6 +8554,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8067,6 +8581,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8090,6 +8608,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8113,6 +8635,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8136,6 +8662,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8159,6 +8689,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8182,6 +8716,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8244,6 +8782,9 @@ Other False False True + False + False + False @@ -8382,6 +8923,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8423,6 +8968,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8447,6 +8996,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8471,6 +9024,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8495,6 +9052,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8519,6 +9080,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8543,6 +9108,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8567,6 +9136,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8591,6 +9164,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8615,6 +9192,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8639,6 +9220,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8663,6 +9248,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8687,6 +9276,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8711,6 +9304,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8735,6 +9332,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8758,6 +9359,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8781,6 +9386,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8823,6 +9432,9 @@ Other False True True + False + False + False @@ -8968,6 +9580,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9009,6 +9625,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9033,6 +9653,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9057,6 +9681,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9081,6 +9709,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9105,6 +9737,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9129,6 +9765,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -9153,6 +9793,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9177,6 +9821,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9200,6 +9848,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9223,6 +9875,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9265,6 +9921,9 @@ Other False False True + False + False + False @@ -9410,6 +10069,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9445,6 +10108,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9469,6 +10136,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9493,6 +10164,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9517,6 +10192,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9541,6 +10220,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9565,6 +10248,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9589,6 +10276,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9613,6 +10304,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9637,6 +10332,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9661,6 +10360,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9685,6 +10388,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9709,6 +10416,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9733,6 +10444,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9757,6 +10472,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9781,6 +10500,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9804,6 +10527,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9827,6 +10554,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9851,6 +10582,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9875,6 +10610,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9899,6 +10638,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9973,6 +10716,9 @@ Other False False True + False + False + False @@ -10118,6 +10864,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10191,6 +10941,10 @@ Other 0 0 flowed + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10275,6 +11029,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10304,6 +11062,9 @@ Other False False True + False + False + False @@ -10430,6 +11191,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10628,6 +11393,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10663,6 +11432,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10687,6 +11460,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10711,6 +11488,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10735,6 +11516,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10758,6 +11543,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10800,6 +11589,9 @@ Other False False True + False + False + False @@ -10966,6 +11758,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10995,6 +11791,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11020,6 +11820,10 @@ Other 0 0 ldsbapdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11044,6 +11848,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -11092,6 +11900,10 @@ Other 0 0 lds_bap_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11160,6 +11972,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11185,6 +12001,10 @@ Other 0 0 endowdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -11212,6 +12032,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11237,6 +12061,10 @@ Other 0 0 lds_end_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11326,6 +12154,10 @@ Other 0 0 sealdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11350,6 +12182,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11395,6 +12231,10 @@ Other 0 0 lds_seal_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11464,6 +12304,10 @@ Other 0 0 sealparents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11488,6 +12332,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11502,6 +12350,8 @@ Other True + False + True 3 @@ -11516,6 +12366,8 @@ Other True + False + True 3 @@ -11530,6 +12382,8 @@ Other True + False + True 3 @@ -11544,6 +12398,8 @@ Other True + False + True 2 @@ -11558,6 +12414,8 @@ Other True + False + True 2 @@ -11572,6 +12430,8 @@ Other True + False + True 2 @@ -11586,6 +12446,8 @@ Other True + False + True 2 @@ -11795,6 +12657,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11826,6 +12692,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -11913,6 +12780,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11961,6 +12832,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11986,6 +12861,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12025,6 +12904,8 @@ Other True + False + True 1 @@ -12049,6 +12930,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12073,6 +12958,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12132,6 +13021,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12167,6 +13060,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12191,6 +13088,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12215,6 +13116,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12239,6 +13144,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12263,6 +13172,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12287,6 +13200,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12311,6 +13228,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12335,6 +13256,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12358,6 +13283,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12382,6 +13311,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12406,6 +13339,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12429,6 +13366,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12452,6 +13393,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12476,6 +13421,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12500,6 +13449,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12523,6 +13476,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12564,6 +13521,9 @@ Other False False True + False + False + False @@ -12699,6 +13659,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12734,6 +13698,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12758,6 +13726,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12782,6 +13754,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12806,6 +13782,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12830,6 +13810,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12854,6 +13838,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12878,6 +13866,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12902,6 +13894,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12925,6 +13921,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12948,6 +13948,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12989,6 +13993,9 @@ Other False False True + False + False + False @@ -13124,6 +14131,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13194,6 +14205,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13278,6 +14293,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13307,6 +14326,9 @@ Other False False True + False + False + False @@ -13430,6 +14452,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13615,6 +14641,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13650,6 +14680,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13674,6 +14708,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13698,6 +14736,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13722,6 +14764,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13776,6 +14822,9 @@ Other True + False + True + True 2 @@ -13790,6 +14839,8 @@ Other True + False + True 3 @@ -13804,6 +14855,8 @@ Other True + False + True 2 @@ -13901,6 +14954,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13940,6 +14997,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -14024,6 +15082,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14067,6 +15129,10 @@ Other 0 0 place_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14095,6 +15161,10 @@ Other 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14123,6 +15193,10 @@ Other 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14151,6 +15225,10 @@ Other 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14179,6 +15257,10 @@ Other 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14207,6 +15289,10 @@ Other 0 0 longitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14235,6 +15321,10 @@ Other 0 0 latitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14263,6 +15353,10 @@ Other 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -14460,6 +15554,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14485,6 +15583,10 @@ Other 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14531,6 +15633,10 @@ Other 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14576,6 +15682,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14600,6 +15710,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14630,6 +15744,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14665,6 +15783,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14689,6 +15811,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14713,6 +15839,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14737,6 +15867,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14761,6 +15895,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14785,6 +15923,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14810,6 +15952,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14836,6 +15982,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14862,6 +16012,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14886,6 +16040,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14911,6 +16069,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14934,6 +16096,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14958,6 +16124,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14984,6 +16154,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -15008,6 +16182,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -15049,6 +16227,9 @@ Other False False True + False + False + False @@ -15195,6 +16376,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15265,6 +16450,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15349,6 +16538,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15384,6 +16577,9 @@ Other False False True + False + False + False @@ -15527,6 +16723,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15738,6 +16938,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15773,6 +16977,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15797,6 +17005,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15821,6 +17033,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15844,6 +17060,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15868,6 +17088,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15909,6 +17133,9 @@ Other False False True + False + False + False @@ -16082,6 +17309,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16135,6 +17366,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16171,6 +17406,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -16241,6 +17477,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -16278,6 +17518,9 @@ Other False False True + False + False + False @@ -16356,6 +17599,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16385,6 +17632,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16420,6 +17671,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16467,6 +17722,10 @@ Other 3 3 lastnamegen + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16481,6 +17740,8 @@ Other True + False + True 1 @@ -16518,6 +17779,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16553,6 +17818,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16623,6 +17892,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16642,6 +17915,8 @@ Icons Only Text Only Text Below Icons Text Beside Icons + False + True 1 @@ -16679,6 +17954,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16738,6 +18017,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16762,6 +18045,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16832,6 +18119,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16939,6 +18230,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16975,6 +18270,10 @@ Text Beside Icons 5 5 date_format + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16999,6 +18298,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17013,6 +18316,8 @@ Text Beside Icons True + False + True 2 @@ -17050,6 +18355,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17086,6 +18395,10 @@ Text Beside Icons 0 0 resname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17111,6 +18424,10 @@ Text Beside Icons 0 0 resaddr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17136,6 +18453,10 @@ Text Beside Icons 0 0 rescity + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17161,6 +18482,10 @@ Text Beside Icons 0 0 resstate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17186,6 +18511,10 @@ Text Beside Icons 0 0 rescountry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17211,6 +18540,10 @@ Text Beside Icons 0 0 respostal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17236,6 +18569,10 @@ Text Beside Icons 0 0 resphone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17261,6 +18598,10 @@ Text Beside Icons 0 0 resemail + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17453,6 +18794,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17490,6 +18835,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17526,6 +18875,10 @@ Text Beside Icons 2 2 iprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17551,6 +18904,10 @@ Text Beside Icons 2 2 fprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17576,6 +18933,10 @@ Text Beside Icons 2 2 pprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17601,6 +18962,10 @@ Text Beside Icons 2 2 sprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17626,6 +18991,10 @@ Text Beside Icons 2 2 oprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17755,6 +19124,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17792,6 +19165,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17843,6 +19220,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17927,6 +19305,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -17965,6 +19347,10 @@ Text Beside Icons 0 0 conf + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17990,6 +19376,10 @@ Text Beside Icons 0 0 spage + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18015,6 +19405,10 @@ Text Beside Icons 0 0 sdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18042,6 +19436,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18069,6 +19467,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18096,6 +19498,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18120,6 +19526,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18144,6 +19554,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18168,6 +19582,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18192,6 +19610,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18216,6 +19638,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18240,6 +19666,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18467,6 +19897,8 @@ Low Normal High Very High + False + True 2 @@ -18481,6 +19913,8 @@ Very High True + False + True 2 @@ -18532,6 +19966,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18615,6 +20050,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -18647,6 +20086,9 @@ Very High False False True + False + False + False @@ -18798,6 +20240,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18865,6 +20308,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18890,6 +20337,9 @@ Very High True False True + False + False + False @@ -18924,6 +20374,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18990,6 +20441,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19037,6 +20492,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -19073,6 +20532,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19098,6 +20561,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19121,6 +20588,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19144,6 +20615,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19169,6 +20644,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19194,6 +20673,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19219,6 +20702,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19242,6 +20729,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19265,6 +20756,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19288,6 +20783,10 @@ Very High 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19313,6 +20812,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19356,6 +20859,9 @@ Very High True False True + False + False + False @@ -19392,6 +20898,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19460,6 +20967,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19491,6 +21002,9 @@ Very High False False True + False + False + False @@ -19611,6 +21125,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19680,6 +21195,10 @@ Very High 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -19708,6 +21227,10 @@ Very High 0 0 style_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19778,6 +21301,9 @@ Very High False False True + False + False + False @@ -19817,6 +21343,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19838,6 +21368,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19865,6 +21399,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19894,6 +21432,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -20025,6 +21567,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20049,6 +21595,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20073,6 +21623,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20097,6 +21651,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20122,6 +21680,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20197,6 +21759,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20246,6 +21812,10 @@ Very High 0 0 rmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20274,6 +21844,10 @@ Very High 0 0 lmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20302,6 +21876,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20329,6 +21907,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20353,6 +21935,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20377,6 +21963,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20555,6 +22145,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20579,6 +22173,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20604,6 +22202,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20628,6 +22230,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20652,6 +22258,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20764,6 +22374,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20809,6 +22423,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20834,6 +22452,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20864,6 +22486,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20909,6 +22535,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20990,6 +22617,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -21057,6 +22688,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21104,6 +22739,10 @@ Very High 0 0 photoDescription + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21191,6 +22830,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21276,6 +22916,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21322,6 +22966,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21358,6 +23006,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21382,6 +23034,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21406,6 +23062,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21430,6 +23090,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21454,6 +23118,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21478,6 +23146,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21503,6 +23175,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21527,6 +23203,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21586,6 +23266,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21610,6 +23294,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21634,6 +23322,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21658,6 +23350,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21766,6 +23462,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21812,6 +23512,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21842,6 +23546,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21912,6 +23620,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21996,6 +23708,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22051,6 +23767,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22086,6 +23806,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22110,6 +23834,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22134,6 +23862,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22157,6 +23889,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22181,6 +23917,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22223,6 +23963,9 @@ Very High True False True + False + False + False @@ -22371,6 +24114,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22406,6 +24153,9 @@ Very High False False True + False + False + False @@ -22549,6 +24299,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22588,6 +24342,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22673,6 +24428,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22719,6 +24478,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22755,6 +24518,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22779,6 +24546,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22803,6 +24574,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22827,6 +24602,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22850,6 +24629,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22874,6 +24657,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22940,6 +24727,10 @@ Very High 0 0 description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22985,6 +24776,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23082,6 +24877,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23117,6 +24916,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23141,6 +24944,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23164,6 +24971,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23188,6 +24999,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23212,6 +25027,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23253,6 +25072,9 @@ Very High False False True + False + False + False @@ -23402,6 +25224,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23472,6 +25298,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23556,6 +25386,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23578,6 +25412,9 @@ Very High False False True + False + False + False @@ -23600,6 +25437,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23635,6 +25476,9 @@ Very High False False True + False + False + False @@ -23778,6 +25622,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23814,6 +25662,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -23871,6 +25720,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23895,6 +25748,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23948,6 +25805,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24033,6 +25891,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24077,6 +25939,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24132,6 +25998,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24202,6 +26069,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24246,6 +26117,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24279,6 +26154,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24349,6 +26225,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24393,6 +26273,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24426,6 +26310,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24483,6 +26368,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24527,6 +26416,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24560,6 +26453,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24617,6 +26511,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24661,6 +26559,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24694,6 +26596,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24765,6 +26668,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24853,6 +26760,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24898,6 +26809,10 @@ Very High 0.5 6 24 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24942,6 +26857,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25001,6 +26920,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25088,6 +27008,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25130,6 +27054,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25155,6 +27083,10 @@ Very High 0 0 eventDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25183,6 +27115,10 @@ Very High 0 0 event_description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25211,6 +27147,10 @@ Very High 0 3 eventPlace + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25239,6 +27179,10 @@ Very High 0 0 eventCause + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25362,6 +27306,9 @@ Very High True + False + True + True 1 @@ -25419,6 +27366,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25454,6 +27405,9 @@ Very High False False True + False + False + False @@ -25597,6 +27551,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25670,6 +27628,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25754,6 +27716,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25790,6 +27756,9 @@ Very High False False True + False + False + False @@ -25933,6 +27902,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26144,6 +28117,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26182,6 +28159,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26266,6 +28244,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26308,6 +28290,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26333,6 +28319,10 @@ Very High 0 0 attr_value + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26393,6 +28383,9 @@ Very High True + False + True + True 1 @@ -26423,6 +28416,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26458,6 +28455,9 @@ Very High False False True + False + False + False @@ -26601,6 +28601,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26672,6 +28676,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26756,6 +28764,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26794,6 +28806,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26878,6 +28891,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26910,6 +28927,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26938,6 +28959,10 @@ Very High 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26966,6 +28991,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -26995,6 +29024,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -27024,6 +29057,10 @@ Very High 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27158,6 +29195,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27204,6 +29245,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27268,6 +29313,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27353,6 +29399,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27396,6 +29446,10 @@ Very High 0 0 address_start + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27424,6 +29478,10 @@ Very High 0 0 street + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27452,6 +29510,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27480,6 +29542,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27508,6 +29574,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27536,6 +29606,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27713,6 +29787,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27791,6 +29869,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27826,6 +29908,9 @@ Very High False False True + False + False + False @@ -27969,6 +30054,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28040,6 +30129,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28124,6 +30217,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28162,6 +30259,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28247,6 +30345,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28279,6 +30381,10 @@ Very High 0 0 url_addr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28307,6 +30413,10 @@ Very High 0 0 url_des + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28431,6 +30541,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -28517,6 +30628,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28560,6 +30675,10 @@ Very High 0 0 alt_given + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28588,6 +30707,10 @@ Very High 0 0 alt_suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28615,6 +30738,10 @@ Very High 0 1 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28643,6 +30770,10 @@ Very High 0 0 alt_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28693,6 +30824,10 @@ Very High 0 0 alt_prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28806,6 +30941,10 @@ Very High 0 0 patronymic + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28833,6 +30972,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28850,6 +30993,9 @@ Very High True + False + True + True 2 @@ -28899,6 +31045,10 @@ Very High 0 0 group_as + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -28923,6 +31073,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28950,6 +31104,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28977,6 +31135,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29001,6 +31163,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29015,6 +31181,9 @@ Very High True + False + True + True 2 @@ -29032,6 +31201,8 @@ Very High Default (based on locale) Family name, Given name Given name, Family name + False + True 2 @@ -29050,6 +31221,8 @@ Given name, Family name Given name Family name Family name Given name + False + True 2 @@ -29074,6 +31247,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -29220,6 +31397,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29256,6 +31437,9 @@ Family name Given name False False True + False + False + False @@ -29399,6 +31583,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29471,6 +31659,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29555,6 +31747,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29593,6 +31789,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29676,6 +31873,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29708,6 +31909,10 @@ Family name Given name 0 0 name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29736,6 +31941,10 @@ Family name Given name 0 0 scrolledwindow30 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29916,6 +32125,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -29986,6 +32196,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30085,6 +32299,10 @@ Family name Given name 0.5 6 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30108,6 +32326,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30142,6 +32364,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -30166,6 +32389,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30190,6 +32417,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30214,6 +32445,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30261,6 +32496,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30340,6 +32576,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30374,6 +32614,10 @@ Family name Given name 0 0 calendar_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30386,6 +32630,8 @@ Family name Given name True + False + True 6 @@ -30424,6 +32670,10 @@ Family name Given name 6 0 quality_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30439,6 +32689,8 @@ Family name Given name True + False + True 1 @@ -30466,6 +32718,10 @@ Family name Given name 6 0 type_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30481,6 +32737,8 @@ Family name Given name True + False + True 5 @@ -30507,6 +32765,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30532,6 +32794,10 @@ Family name Given name 0 0 start_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30557,6 +32823,10 @@ Family name Given name 0 0 start_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30582,6 +32852,10 @@ Family name Given name 0 0 start_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -30619,6 +32893,8 @@ Family name Given name True + False + True 2 @@ -30665,6 +32941,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30690,6 +32970,10 @@ Family name Given name 0 0 stop_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -30715,6 +32999,10 @@ Family name Given name 0 0 stop_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30740,6 +33028,10 @@ Family name Given name 0 0 stop_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -30777,6 +33069,8 @@ Family name Given name True + False + True 6 @@ -30837,6 +33131,10 @@ Family name Given name 0 0 date_text_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30903,6 +33201,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30970,6 +33269,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30997,6 +33300,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31093,6 +33400,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True