From 25c25981473eb5d2a46bea99f6c085f644335906 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sun, 20 Feb 2005 01:02:15 +0000 Subject: [PATCH] * src/ChooseParents.py: readonly fixes * src/EditPerson.py: readonly fixes * src/EditPlace.py: readonly fixes * src/EditSource.py: readonly fixes * src/FamilyView.py: readonly fixes * src/ImageSelect.py: readonly fixes * src/Marriage.py: readonly fixes svn: r4062 --- gramps2/ChangeLog | 9 + gramps2/src/ChooseParents.py | 13 +- gramps2/src/EditPerson.py | 5 +- gramps2/src/EditPlace.py | 44 +- gramps2/src/EditSource.py | 26 +- gramps2/src/FamilyView.py | 71 +- gramps2/src/GrampsBSDDB.py | 2 +- gramps2/src/ImageSelect.py | 32 +- gramps2/src/Marriage.py | 2 +- gramps2/src/gramps.glade | 2752 ++++++++++++++++++++++++++++++++-- 10 files changed, 2777 insertions(+), 179 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 5b2862f84..8887905ec 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,4 +1,13 @@ 2005-02-19 Don Allingham + + * src/ChooseParents.py: readonly fixes + * src/EditPerson.py: readonly fixes + * src/EditPlace.py: readonly fixes + * src/EditSource.py: readonly fixes + * src/FamilyView.py: readonly fixes + * src/ImageSelect.py: readonly fixes + * src/Marriage.py: readonly fixes + * src/EditPerson.py: add privacy marker * src/GrampBSDDB.py: record database version, handle person privacy flag * src/RelLIb.py: Privacy flag for person (inherit from DataObj instead of SourceNote) diff --git a/gramps2/src/ChooseParents.py b/gramps2/src/ChooseParents.py index 3db183f57..dd7e17325 100644 --- a/gramps2/src/ChooseParents.py +++ b/gramps2/src/ChooseParents.py @@ -635,9 +635,11 @@ class ModifyParents: self.family = self.db.get_family_from_handle(family_handle) self.family_update = family_update self.full_update = full_update - - self.father = self.db.get_person_from_handle(self.family.get_father_handle()) - self.mother = self.db.get_person_from_handle(self.family.get_mother_handle()) + + fid = self.family.get_father_handle() + mid = self.family.get_mother_handle() + self.father = self.db.get_person_from_handle(fid) + self.mother = self.db.get_person_from_handle(mid) self.glade = gtk.glade.XML(const.gladeFile,"modparents","gramps") self.top = self.glade.get_widget("modparents") @@ -699,6 +701,11 @@ class ModifyParents: if parent_window: self.top.set_transient_for(parent_window) + + self.glade.get_widget('fcombo').set_sensitive(False) + self.glade.get_widget('mcombo').set_sensitive(False) + self.glade.get_widget('ok').set_sensitive(False) + self.val = self.top.run() if self.val == gtk.RESPONSE_OK: self.save_parents_clicked() diff --git a/gramps2/src/EditPerson.py b/gramps2/src/EditPerson.py index c56ae024e..896762230 100644 --- a/gramps2/src/EditPerson.py +++ b/gramps2/src/EditPerson.py @@ -1810,8 +1810,9 @@ class EditPerson: item = gtk.TearoffMenuItem() item.show() menu.append(item) - msg = _("Make the selected name the preferred name") - Utils.add_menuitem(menu,msg,None,self.change_name) + if not self.db.readonly: + msg = _("Make the selected name the preferred name") + Utils.add_menuitem(menu,msg,None,self.change_name) menu.popup(None,None,None,event.button,event.time) def on_aka_update_clicked(self,obj): diff --git a/gramps2/src/EditPlace.py b/gramps2/src/EditPlace.py index 2bd038e52..3b70387d2 100644 --- a/gramps2/src/EditPlace.py +++ b/gramps2/src/EditPlace.py @@ -96,17 +96,30 @@ class EditPlace: self.glry = ImageSelect.Gallery(place, self.db.commit_place, self.path, self.iconlist, self.db, self,self.top) + + mode = not self.parent.db.readonly self.title = self.top_window.get_widget("place_title") + self.title.set_editable(mode) self.city = self.top_window.get_widget("city") + self.city.set_editable(mode) self.parish = self.top_window.get_widget("parish") + self.parish.set_editable(mode) self.county = self.top_window.get_widget("county") + self.county.set_editable(mode) self.state = self.top_window.get_widget("state") + self.state.set_editable(mode) self.phone = self.top_window.get_widget("phone") + self.phone.set_editable(mode) self.postal = self.top_window.get_widget("postal") + self.postal.set_editable(mode) self.country = self.top_window.get_widget("country") + self.country.set_editable(mode) self.longitude = self.top_window.get_widget("longitude") + self.longitude.set_editable(mode) self.latitude = self.top_window.get_widget("latitude") + self.latitude.set_editable(mode) self.note = self.top_window.get_widget("place_note") + self.note.set_editable(mode) self.web_list = self.top_window.get_widget("web_list") self.web_url = self.top_window.get_widget("web_url") @@ -117,10 +130,12 @@ class EditPlace: self.top_window.get_widget('changed').set_text(place.get_change_display()) # event display - self.web_model = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_STRING) - self.build_columns(self.web_list, [(_('Path'),150), (_('Description'),150)]) + self.web_model = gtk.ListStore(str,str) + self.build_columns(self.web_list, [(_('Path'),150), + (_('Description'),150)]) self.web_list.set_model(self.web_model) - self.web_list.get_selection().connect('changed',self.on_web_list_select_row) + self.web_list.get_selection().connect('changed', + self.on_web_list_select_row) self.loc_edit = self.top_window.get_widget("loc_edit") self.loc_list = self.top_window.get_widget("loc_list") @@ -135,8 +150,7 @@ class EditPlace: self.ulist = place.get_url_list()[:] self.llist = place.get_alternate_locations()[:] - self.loc_model = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_STRING, - gobject.TYPE_STRING,gobject.TYPE_STRING) + self.loc_model = gtk.ListStore(str,str,str,str) self.build_columns(self.loc_list, [(_('City'),150), (_('County'),100), (_('State'),100), (_('Country'),50)]) self.loc_list.set_model(self.loc_model) @@ -174,6 +188,9 @@ class EditPlace: else: self.flowed.set_active(1) + self.flowed.set_sensitive(mode) + self.preform.set_sensitive(mode) + if self.place.get_media_list(): Utils.bold_label(self.gallery_label) @@ -197,13 +214,15 @@ class EditPlace: "on_apply_clicked" : self.on_place_apply_clicked, }) - self.sourcetab = Sources.SourceTab(self.srcreflist,self, - self.top_window,self.top,self.slist, - self.top_window.get_widget('add_src'), - self.top_window.get_widget('edit_src'), - self.top_window.get_widget('del_src')) + self.sourcetab = Sources.SourceTab( + self.srcreflist,self, + self.top_window,self.top,self.slist, + self.top_window.get_widget('add_src'), + self.top_window.get_widget('edit_src'), + self.top_window.get_widget('del_src'), + self.parent.db.readonly) - if self.place.get_handle() == None: + if self.place.get_handle() == None or self.parent.db.readonly: self.top_window.get_widget("add_photo").set_sensitive(0) self.top_window.get_widget("delete_photo").set_sensitive(0) @@ -216,6 +235,9 @@ class EditPlace: self.web_list.connect('drag_data_received', self.url_dest_drag_data_received) + for name in ['del_name','add_name','sel_photo','add_url','del_url']: + self.top_window.get_widget(name).set_sensitive(mode) + self.redraw_url_list() self.redraw_location_list() self.display_references() diff --git a/gramps2/src/EditSource.py b/gramps2/src/EditSource.py index b373d1e33..7cc784947 100644 --- a/gramps2/src/EditSource.py +++ b/gramps2/src/EditSource.py @@ -55,7 +55,8 @@ import NameDisplay class EditSource: - def __init__(self,source,db,parent,parent_window=None,func=None): + def __init__(self,source,db,parent,parent_window=None, + func=None,readonly=False): if source: self.source = source else: @@ -78,6 +79,7 @@ class EditSource: self.ref_not_loaded = 1 self.lists_changed = 0 self.gallery_ok = 0 + mode = not self.db.readonly self.top_window = gtk.glade.XML(const.gladeFile,"sourceEditor","gramps") self.top = self.top_window.get_widget("sourceEditor") @@ -92,20 +94,33 @@ class EditSource: self.pubinfo = self.top_window.get_widget("pubinfo") self.abbrev = self.top_window.get_widget("abbrev") self.note = self.top_window.get_widget("source_note") + self.note.set_editable(mode) self.notes_buffer = self.note.get_buffer() self.gallery_label = self.top_window.get_widget("gallerySourceEditor") self.refs_label = self.top_window.get_widget("refsSourceEditor") self.notes_label = self.top_window.get_widget("notesSourceEditor") self.flowed = self.top_window.get_widget("source_flowed") + self.flowed.set_sensitive(mode) self.preform = self.top_window.get_widget("source_preform") + self.preform.set_sensitive(mode) self.refinfo = self.top_window.get_widget("refinfo") self.title = self.top_window.get_widget("source_title") self.title.set_text(source.get_title()) + self.title.set_editable(mode) self.author.set_text(source.get_author()) + self.author.set_editable(mode) self.pubinfo.set_text(source.get_publication_info()) + self.pubinfo.set_editable(mode) self.abbrev.set_text(source.get_abbreviation()) + self.abbrev.set_editable(mode) + + self.top_window.get_widget('del_data').set_sensitive(mode) + self.top_window.get_widget('add_data').set_sensitive(mode) + self.top_window.get_widget('add_photo').set_sensitive(mode) + self.top_window.get_widget('sel_photo').set_sensitive(mode) + self.top_window.get_widget('delete_photo').set_sensitive(mode) if source.get_note(): self.notes_buffer.set_text(source.get_note()) @@ -133,9 +148,9 @@ class EditSource: "on_add_data_clicked" : self.on_add_data_clicked, }) - if self.source.get_handle() == None: - self.top_window.get_widget("edit_photo").set_sensitive(0) - self.top_window.get_widget("delete_photo").set_sensitive(0) + if self.source.get_handle() == None or self.db.readonly: + self.top_window.get_widget("edit_photo").set_sensitive(False) + self.top_window.get_widget("delete_photo").set_sensitive(False) self.datalist = self.top_window.get_widget('datalist') colno = 0 @@ -165,6 +180,8 @@ class EditSource: if parent_window: self.top.set_transient_for(parent_window) + self.top_window.get_widget('ok').set_sensitive(not self.db.readonly) + self.display_references() if parent_window: self.top.set_transient_for(parent_window) @@ -181,7 +198,6 @@ class EditSource: focus_cell=None, start_editing=True) - self.top_window.get_widget('ok').set_sensitive(not self.db.readonly) def on_delete_data_clicked(self,widget): (model,node) = self.data_sel.get_selected() diff --git a/gramps2/src/FamilyView.py b/gramps2/src/FamilyView.py index 656b8e76b..c3775de03 100644 --- a/gramps2/src/FamilyView.py +++ b/gramps2/src/FamilyView.py @@ -365,16 +365,18 @@ class FamilyView: back_sensitivity = self.parent.hindex > 0 fwd_sensitivity = self.parent.hindex + 1 < len(self.parent.history) entries = [ - (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity), - (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity), + (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity,False), + (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity,False), #FIXME: revert to stock item when German gtk translation is fixed #(gtk.STOCK_HOME,self.parent.on_home_clicked,1), - (_("Home"),self.parent.on_home_clicked,1), - (_("Add Bookmark"),self.parent.on_add_bookmark_activate,1), + (_("Home"),self.parent.on_home_clicked,1,False), + (_("Add Bookmark"),self.parent.on_add_bookmark_activate,1,True), ] menu = gtk.Menu() menu.set_title(_('People Menu')) - for stock_id,callback,sensitivity in entries: + for stock_id,callback,sensitivity,ro in entries: + if ro and self.parent.db.readonly: + continue item = gtk.ImageMenuItem(stock_id) #FIXME: remove when German gtk translation is fixed if stock_id == _("Home"): @@ -422,17 +424,19 @@ class FamilyView: back_sensitivity = self.parent.hindex > 0 fwd_sensitivity = self.parent.hindex + 1 < len(self.parent.history) entries = [ - (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity), - (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity), - #FIXME: revert to stock item when German gtk translation is fixed - #(gtk.STOCK_HOME,self.parent.on_home_clicked,1), - (_("Home"),self.parent.on_home_clicked,1), - (None,None,0), - (_("Add parents"),self.add_parents_clicked,1), + (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity,False), + (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity,False), + (gtk.STOCK_HOME,self.parent.on_home_clicked,1,False), + (None,None,0,True), + (_("Add parents"),self.add_parents_clicked,1,True), ] + menu = gtk.Menu() menu.set_title(_('People Menu')) - for stock_id,callback,sensitivity in entries: + + for (stock_id,callback,sensitivity,ro) in entries: + if self.parent.db.readonly and ro: + continue item = gtk.ImageMenuItem(stock_id) #FIXME: remove when German gtk translation is fixed if stock_id == _("Home"): @@ -452,23 +456,18 @@ class FamilyView: back_sensitivity = self.parent.hindex > 0 fwd_sensitivity = self.parent.hindex + 1 < len(self.parent.history) entries = [ - (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity), - (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity), - #FIXME: revert to stock item when German gtk translation is fixed - #(gtk.STOCK_HOME,self.parent.on_home_clicked,1), - (_("Home"),self.parent.on_home_clicked,1), - (None,None,0), - (_("Add parents"),self.add_sp_parents,1), + (gtk.STOCK_GO_BACK,self.parent.back_clicked,back_sensitivity,False), + (gtk.STOCK_GO_FORWARD,self.parent.fwd_clicked,fwd_sensitivity,False), + (gtk.STOCK_HOME,self.parent.on_home_clicked,1,False), + (None,None,0,True), + (_("Add parents"),self.add_sp_parents,1,True), ] menu = gtk.Menu() menu.set_title(_('People Menu')) - for stock_id,callback,sensitivity in entries: + for stock_id,callback,sensitivity,ro in entries: + if ro and self.parent.db.readonly: + continue item = gtk.ImageMenuItem(stock_id) - #FIXME: remove when German gtk translation is fixed - if stock_id == _("Home"): - im = gtk.image_new_from_stock(gtk.STOCK_HOME,gtk.ICON_SIZE_MENU) - im.show() - item.set_image(im) if callback: item.connect("activate",callback) item.set_sensitive(sensitivity) @@ -527,8 +526,9 @@ class FamilyView: (_("Edit the selected child"),self.edit_child_callback), (_("Remove the selected child"),self.remove_child_clicked), ] - for msg,callback in entries: - Utils.add_menuitem(menu,msg,handle,callback) + if not self.parent.db.readonly: + for msg,callback in entries: + Utils.add_menuitem(menu,msg,handle,callback) menu.popup(None,None,None,event.button,event.time) def edit_child_callback(self,obj): @@ -599,8 +599,9 @@ class FamilyView: (_("Edit the selected spouse"), self.edit_spouse_callback), (_("Set the selected spouse as the preferred spouse"), self.set_preferred_spouse), ] - for msg,callback in entries: - Utils.add_menuitem(menu,msg,None,callback) + if not self.parent.db.readonly: + for msg,callback in entries: + Utils.add_menuitem(menu,msg,None,callback) menu.popup(None,None,None,event.button,event.time) def set_preferred_spouse(self,obj): @@ -1158,8 +1159,9 @@ class FamilyView: (_("Add parents"), self.add_parents_clicked), (_("Remove parents"),self.del_parents_clicked), ] - for msg,callback in entries: - Utils.add_menuitem(menu,msg,family,callback) + if not self.parent.db.readonly: + for msg,callback in entries: + Utils.add_menuitem(menu,msg,family,callback) menu.popup(None,None,None,event.button,event.time) def build_sp_parents_menu(self,family,event): @@ -1196,8 +1198,9 @@ class FamilyView: (_("Add parents"), self.add_sp_parents), (_("Remove parents"),self.del_sp_parents), ] - for msg,callback in entries: - Utils.add_menuitem(menu,msg,family,callback) + if not self.parent.db.readonly: + for msg,callback in entries: + Utils.add_menuitem(menu,msg,family,callback) menu.popup(None,None,None,event.button,event.time) def edit_ap_relationships(self,obj): diff --git a/gramps2/src/GrampsBSDDB.py b/gramps2/src/GrampsBSDDB.py index 7a072b148..3aa2ebeff 100644 --- a/gramps2/src/GrampsBSDDB.py +++ b/gramps2/src/GrampsBSDDB.py @@ -169,7 +169,7 @@ class GrampsBSDDB(GrampsDbBase): self.undodb = db.DB() self.undodb.open(self.undolog, db.DB_RECNO, db.DB_CREATE) - if self.metadata.get('version') == None: + if not self.readonly and self.metadata.get('version') == None: self.metadata['version'] = _DBVERSION self.metadata = self.dbopen(name, "meta") diff --git a/gramps2/src/ImageSelect.py b/gramps2/src/ImageSelect.py index 0df5c76eb..d2b9605fd 100644 --- a/gramps2/src/ImageSelect.py +++ b/gramps2/src/ImageSelect.py @@ -895,13 +895,17 @@ class GlobalMediaProperties: self.date_object = Date.Date() self.path = self.db.get_save_path() - self.change_dialog = gtk.glade.XML(const.imageselFile,"change_global","gramps") + self.change_dialog = gtk.glade.XML(const.imageselFile, + "change_global","gramps") + mode = not self.db.readonly + title = _('Media Properties Editor') self.window = self.change_dialog.get_widget('change_global') self.date_entry = self.change_dialog.get_widget('date') - + self.date_entry.set_editable(mode) + self.pdmap = {} self.add_places = [] for key in self.db.get_place_handles(): @@ -909,6 +913,8 @@ class GlobalMediaProperties: self.pdmap[p[0]] = key self.place = self.change_dialog.get_widget('place') + self.place.set_editable(mode) + self.place_list = self.pdmap.keys() self.place_list.sort() build_dropdown(self.place,self.place_list) @@ -925,11 +931,19 @@ class GlobalMediaProperties: self.change_dialog.get_widget('title'),title) self.descr_window = self.change_dialog.get_widget("description") + self.descr_window.set_editable(mode) + self.notes = self.change_dialog.get_widget("notes") - self.date_check = DateEdit.DateEdit(self.date_object, - self.date_entry, - self.change_dialog.get_widget("date_edit"), - self.window) + self.notes.set_editable(mode) + + self.date_edit = self.change_dialog.get_widget("date_edit") + self.date_edit.set_sensitive(mode) + + self.date_check = DateEdit.DateEdit( + self.date_object, + self.date_entry, + self.date_edit, + self.window) self.pixmap = self.change_dialog.get_widget("pixmap") self.attr_type = self.change_dialog.get_widget("attr_type") @@ -942,7 +956,9 @@ class GlobalMediaProperties: self.notes_label = self.change_dialog.get_widget("notesGlobal") self.refs_label = self.change_dialog.get_widget("refsGlobal") self.flowed = self.change_dialog.get_widget("global_flowed") + self.flowed.set_sensitive(mode) self.preform = self.change_dialog.get_widget("global_preform") + self.preform.set_sensitive(mode) titles = [(_('Attribute'),0,150),(_('Value'),1,100)] @@ -1002,6 +1018,10 @@ class GlobalMediaProperties: "on_global_delete_event" : self.on_delete_event, }) + + for name in ['gl_del_src','gl_add_src','add_attr','del_attr','ok']: + self.change_dialog.get_widget(name).set_sensitive(mode) + self.redraw_attr_list() self.display_refs() if parent_window: diff --git a/gramps2/src/Marriage.py b/gramps2/src/Marriage.py index e4fd0ab66..203d900c9 100644 --- a/gramps2/src/Marriage.py +++ b/gramps2/src/Marriage.py @@ -380,7 +380,7 @@ class Marriage: if lds_ord == None: lds_ord = RelLib.LdsOrd() self.family.set_lds_sealing(lds_ord) - NoteEdit.NoteEditor(lds_ord,self,self.window) + NoteEdit.NoteEditor(lds_ord,self,self.window,readonly=self.db.readonly) def on_up_clicked(self,obj): model,node = self.etree.get_selected() diff --git a/gramps2/src/gramps.glade b/gramps2/src/gramps.glade index 66d3ea9d4..9de39556f 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 @@ -1017,6 +1018,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1065,6 +1070,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1113,6 +1122,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1161,6 +1174,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1209,6 +1226,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1257,6 +1278,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1302,6 +1327,8 @@ True + False + True 0 @@ -1318,7 +1345,7 @@ 0 True - * + * False @@ -1371,6 +1398,9 @@ False False True + False + False + False @@ -1400,6 +1430,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1688,6 +1722,9 @@ True False True + False + False + False @@ -1811,6 +1848,10 @@ 0 0 chlist + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1836,6 +1877,10 @@ 0 0 ap_data + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1861,6 +1906,10 @@ 0 0 ap_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1886,6 +1935,10 @@ 0 0 sp_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1911,6 +1964,10 @@ 0 0 sp_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1940,6 +1997,9 @@ True True True + False + False + False @@ -1970,6 +2030,9 @@ True False True + False + False + False @@ -2000,6 +2063,9 @@ True False True + False + False + False @@ -2030,6 +2096,9 @@ True True True + False + False + False @@ -2185,6 +2254,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2219,6 +2292,9 @@ True True True + False + False + False @@ -2245,6 +2321,10 @@ 0 0 chlist2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2274,6 +2354,9 @@ True True True + False + False + False @@ -2304,6 +2387,9 @@ True False True + False + False + False @@ -2334,6 +2420,9 @@ True False True + False + False + False @@ -2364,6 +2453,9 @@ True False True + False + False + False @@ -2514,6 +2606,10 @@ 0 0 sp_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2636,6 +2732,10 @@ 0 0 sp_list2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2758,6 +2858,10 @@ 0 0 ap_data2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2783,6 +2887,10 @@ 0 0 ap_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2940,6 +3048,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2987,6 +3099,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3016,6 +3132,9 @@ True False True + False + False + False @@ -3045,6 +3164,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3074,6 +3197,9 @@ True False True + False + False + False @@ -3103,6 +3229,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3154,6 +3284,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3190,6 +3324,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3215,6 +3353,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3238,6 +3380,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3261,6 +3407,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3286,6 +3436,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3311,6 +3465,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3336,6 +3494,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3359,6 +3521,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3382,6 +3548,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3405,6 +3575,10 @@ 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3430,6 +3604,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3473,6 +3651,9 @@ True False True + False + False + False @@ -3502,6 +3683,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3554,6 +3739,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3630,6 +3816,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3668,6 +3858,9 @@ False False True + False + False + False @@ -3775,6 +3968,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3800,6 +3997,10 @@ 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3819,6 +4020,8 @@ Unmarried Civil Union Unknown Other + False + True 1 @@ -3877,6 +4080,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3961,6 +4165,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3999,6 +4207,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4027,6 +4239,10 @@ Other 0 0 mrel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4054,6 +4270,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4079,6 +4299,10 @@ Other 0 0 father_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4174,6 +4398,10 @@ Other 0 0 mother_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4198,6 +4426,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4227,6 +4459,9 @@ Other True False True + False + False + False @@ -4256,6 +4491,9 @@ Other True False True + False + False + False @@ -4330,7 +4568,7 @@ Other 0 True - * + * False @@ -4357,6 +4595,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4379,6 +4621,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4401,6 +4647,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4423,6 +4673,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4445,6 +4699,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4467,6 +4725,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4489,6 +4751,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4523,7 +4789,7 @@ Other 0 True - * + * False @@ -4550,6 +4816,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4572,6 +4842,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4594,6 +4868,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4616,6 +4894,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4638,6 +4920,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4660,6 +4946,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4682,6 +4972,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4706,6 +5000,8 @@ Unmarried Civil Union Uknown Other + False + True @@ -4758,6 +5054,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4842,6 +5139,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4887,6 +5188,9 @@ Other True False True + False + False + False @@ -4997,7 +5301,7 @@ Other 0 True - * + * False @@ -5024,6 +5328,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5046,6 +5354,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5068,6 +5380,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5090,6 +5406,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5112,6 +5432,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5134,6 +5458,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5177,7 +5505,7 @@ Other 0 True - * + * False @@ -5204,6 +5532,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5226,6 +5558,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5248,6 +5584,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5270,6 +5610,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5292,6 +5636,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5314,6 +5662,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5345,6 +5697,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5370,6 +5726,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5407,6 +5767,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5493,6 +5854,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5537,6 +5902,10 @@ Other 0 0 source_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5562,6 +5931,10 @@ Other 0 0 author + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5586,7 +5959,7 @@ Other 0 True - * + * False @@ -5607,7 +5980,7 @@ Other 0 True - * + * False @@ -5633,6 +6006,10 @@ Other 0 0 pubinfo + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5653,7 +6030,7 @@ Other 0 True - * + * False @@ -5674,7 +6051,7 @@ Other 0 True - * + * False @@ -5700,6 +6077,10 @@ Other 0 0 abbrev + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5730,6 +6111,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5800,6 +6185,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5884,6 +6273,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5914,6 +6307,9 @@ Other True False True + False + False + False @@ -5931,7 +6327,7 @@ Other 6 - + 36 True Add a new media object to the database and place it in this gallery @@ -5960,7 +6356,7 @@ Other - + True Remove selected object from this gallery only True @@ -6013,6 +6409,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6097,7 +6497,7 @@ Other - + True Select an existing media object from the database and place it in this gallery True @@ -6226,6 +6626,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6249,6 +6653,9 @@ Other False False True + False + False + False @@ -6271,6 +6678,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6310,6 +6721,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6395,6 +6807,10 @@ Other 0.5 10 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6468,6 +6884,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6495,7 +6912,7 @@ Other - + True True True @@ -6549,6 +6966,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6586,6 +7007,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6610,6 +7035,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6634,8 +7063,12 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 - + @@ -6649,7 +7082,7 @@ Other - + True True False @@ -6666,7 +7099,7 @@ Other 0 True - * + * False @@ -6693,6 +7126,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6715,6 +7152,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6737,6 +7178,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6759,6 +7204,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6781,6 +7230,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6803,6 +7256,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6825,6 +7282,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6854,6 +7315,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6879,9 +7344,13 @@ Other 0 0 mrel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: - + @@ -6895,7 +7364,7 @@ Other - + True True False @@ -6912,7 +7381,7 @@ Other 0 True - * + * False @@ -6939,6 +7408,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6961,6 +7434,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6983,6 +7460,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7005,6 +7486,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7027,6 +7512,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7049,6 +7538,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7071,6 +7564,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7100,6 +7597,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -7124,6 +7625,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7148,6 +7653,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7171,6 +7680,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7242,6 +7755,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7332,6 +7846,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7367,6 +7885,10 @@ Other 0 0 entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7384,7 +7906,7 @@ Other 0 True - * + * True @@ -7424,6 +7946,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7501,6 +8024,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7537,7 +8064,7 @@ Other 0 True - * + * False @@ -7564,6 +8091,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7586,6 +8117,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7608,6 +8143,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7630,6 +8169,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7652,6 +8195,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7674,6 +8221,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7708,7 +8259,7 @@ Other 0 True - * + * False @@ -7735,6 +8286,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7757,6 +8312,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7779,6 +8338,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7801,6 +8364,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7823,6 +8390,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7845,6 +8416,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7874,6 +8449,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7899,6 +8478,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7934,6 +8517,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8010,6 +8594,9 @@ Other False True True + False + False + False @@ -8034,6 +8621,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8069,6 +8660,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8149,6 +8741,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -8207,6 +8803,10 @@ Other 0 0 givenName + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8232,6 +8832,10 @@ Other 0 0 surname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8257,6 +8861,10 @@ Other 0 0 prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8282,6 +8890,10 @@ Other 0 0 suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8307,6 +8919,10 @@ Other 0 0 title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8332,6 +8948,10 @@ Other 0 0 nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8356,6 +8976,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8381,6 +9005,10 @@ Other 0 0 birthDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8402,7 +9030,7 @@ Other 0 True - * + * False @@ -8424,7 +9052,7 @@ Other 0 True - * + * False @@ -8446,7 +9074,7 @@ Other 0 True - * + * False @@ -8471,6 +9099,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8573,6 +9205,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8598,6 +9234,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -8618,7 +9258,7 @@ Other 0 True - * + * False @@ -8644,6 +9284,10 @@ Other 0 0 birth_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8668,6 +9312,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -8693,6 +9341,10 @@ Other 0 0 deathDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -8721,6 +9373,10 @@ Other 0 0 death_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -8741,7 +9397,7 @@ Other 0 True - * + * False @@ -8762,7 +9418,7 @@ Other 0 True - * + * False @@ -8777,6 +9433,9 @@ Other True + False + True + True 2 @@ -8803,7 +9462,7 @@ Other 0 True - * + * False @@ -8858,7 +9517,7 @@ Other 0 True - * + * False @@ -8881,7 +9540,7 @@ Other 0 True - * + * False @@ -8934,7 +9593,7 @@ Other 0 True - * + * False @@ -8989,6 +9648,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9012,6 +9675,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -9068,7 +9735,7 @@ Other 0 True - * + * False @@ -9151,6 +9818,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -9247,6 +9918,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9288,6 +9963,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9312,6 +9991,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9336,6 +10019,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9360,6 +10047,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9384,6 +10075,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9408,6 +10103,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9432,6 +10131,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9456,6 +10159,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9480,6 +10187,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9504,6 +10215,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9528,6 +10243,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9551,6 +10270,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9574,6 +10297,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9597,6 +10324,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9620,6 +10351,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9643,6 +10378,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9666,6 +10405,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9689,6 +10432,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9751,6 +10498,9 @@ Other False False True + False + False + False @@ -9889,6 +10639,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9930,6 +10684,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9954,6 +10712,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9978,6 +10740,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10002,6 +10768,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10026,6 +10796,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10050,6 +10824,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10074,6 +10852,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10098,6 +10880,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10122,6 +10908,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10146,6 +10936,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10170,6 +10964,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10194,6 +10992,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10218,6 +11020,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10242,6 +11048,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10265,6 +11075,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10288,6 +11102,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -10330,6 +11148,9 @@ Other False True True + False + False + False @@ -10475,6 +11296,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10516,6 +11341,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10540,6 +11369,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10564,6 +11397,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10588,6 +11425,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10612,6 +11453,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10636,6 +11481,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -10660,6 +11509,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10684,6 +11537,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10707,6 +11564,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10730,6 +11591,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10772,6 +11637,9 @@ Other False False True + False + False + False @@ -10917,6 +11785,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10952,6 +11824,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10976,6 +11852,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11000,6 +11880,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11024,6 +11908,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11048,6 +11936,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11072,6 +11964,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11096,6 +11992,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11120,6 +12020,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11144,6 +12048,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11168,6 +12076,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11192,6 +12104,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11216,6 +12132,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11240,6 +12160,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11264,6 +12188,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11288,6 +12216,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11311,6 +12243,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11334,6 +12270,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11358,6 +12298,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11382,6 +12326,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11406,6 +12354,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11480,6 +12432,9 @@ Other False False True + False + False + False @@ -11625,6 +12580,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11698,6 +12657,10 @@ Other 0 0 flowed + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11782,6 +12745,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11811,6 +12778,9 @@ Other False False True + False + False + False @@ -11937,6 +12907,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12135,6 +13109,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12170,6 +13148,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12194,6 +13176,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12218,6 +13204,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12242,6 +13232,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12265,6 +13259,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12307,6 +13305,9 @@ Other False False True + False + False + False @@ -12473,6 +13474,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12502,6 +13507,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12522,7 +13531,7 @@ Other 0 True - * + * False @@ -12548,6 +13557,10 @@ Other 0 0 ldsbapdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12575,6 +13588,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -12623,6 +13640,10 @@ Other 0 0 lds_bap_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12646,7 +13667,7 @@ Other 0 True - * + * False @@ -12691,6 +13712,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12716,6 +13741,10 @@ Other 0 0 endowdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -12744,6 +13773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12769,6 +13802,10 @@ Other 0 0 lds_end_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12792,7 +13829,7 @@ Other 0 True - * + * False @@ -12813,7 +13850,7 @@ Other 0 True - * + * False @@ -12879,6 +13916,10 @@ Other 0 0 sealdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12902,7 +13943,7 @@ Other 0 True - * + * False @@ -12927,6 +13968,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12972,6 +14017,10 @@ Other 0 0 lds_seal_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12995,7 +14044,7 @@ Other 0 True - * + * False @@ -13041,6 +14090,10 @@ Other 0 0 sealparents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13065,6 +14118,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13079,6 +14136,9 @@ Other True + False + True + True 2 @@ -13093,6 +14153,9 @@ Other True + False + True + True 2 @@ -13107,6 +14170,9 @@ Other True + False + True + True 2 @@ -13121,6 +14187,8 @@ Other True + False + True 3 @@ -13135,6 +14203,8 @@ Other True + False + True 3 @@ -13149,6 +14219,8 @@ Other True + False + True 3 @@ -13163,6 +14235,8 @@ Other True + False + True 2 @@ -13192,6 +14266,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13223,6 +14301,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -13310,6 +14389,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13358,6 +14441,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13383,6 +14470,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13406,7 +14497,7 @@ Other 0 True - * + * False @@ -13422,6 +14513,8 @@ Other True + False + True 1 @@ -13446,6 +14539,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13470,6 +14567,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13529,6 +14630,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13564,6 +14669,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13588,6 +14697,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13612,6 +14725,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13636,6 +14753,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13660,6 +14781,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13684,6 +14809,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13708,6 +14837,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -13732,6 +14865,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -13755,6 +14892,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13779,6 +14920,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13803,6 +14948,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13826,6 +14975,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13849,6 +15002,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13873,6 +15030,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13897,6 +15058,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13920,6 +15085,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13961,6 +15130,9 @@ Other False False True + False + False + False @@ -14096,6 +15268,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14131,6 +15307,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14155,6 +15335,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14179,6 +15363,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14203,6 +15391,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14227,6 +15419,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14251,6 +15447,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14275,6 +15475,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14299,6 +15503,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14322,6 +15530,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14345,6 +15557,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14386,6 +15602,9 @@ Other False False True + False + False + False @@ -14521,6 +15740,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14591,6 +15814,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14675,6 +15902,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14704,6 +15935,9 @@ Other False False True + False + False + False @@ -14827,6 +16061,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15012,6 +16250,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15047,6 +16289,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15071,6 +16317,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15095,6 +16345,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15119,6 +16373,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15139,7 +16397,7 @@ Other 0 True - * + * False @@ -15194,6 +16452,9 @@ Other True + False + True + True 2 @@ -15208,6 +16469,9 @@ Other True + False + True + True 2 @@ -15222,6 +16486,8 @@ Other True + False + True 3 @@ -15259,6 +16525,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15298,6 +16568,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -15382,6 +16653,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15425,6 +16700,10 @@ Other 0 0 place_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15453,6 +16732,10 @@ Other 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15481,6 +16764,10 @@ Other 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15509,6 +16796,10 @@ Other 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15537,6 +16828,10 @@ Other 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15565,6 +16860,10 @@ Other 0 0 longitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15593,6 +16892,10 @@ Other 0 0 latitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15621,6 +16924,10 @@ Other 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -15646,7 +16953,7 @@ Other 0 True - * + * False @@ -15667,7 +16974,7 @@ Other 0 True - * + * False @@ -15688,7 +16995,7 @@ Other 0 True - * + * False @@ -15709,7 +17016,7 @@ Other 0 True - * + * False @@ -15730,7 +17037,7 @@ Other 0 True - * + * False @@ -15751,7 +17058,7 @@ Other 0 True - * + * False @@ -15772,7 +17079,7 @@ Other 0 True - * + * False @@ -15793,7 +17100,7 @@ Other 0 True - * + * False @@ -15818,6 +17125,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15843,6 +17154,10 @@ Other 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15863,7 +17178,7 @@ Other 0 True - * + * False @@ -15889,6 +17204,10 @@ Other 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15909,7 +17228,7 @@ Other 0 True - * + * False @@ -15934,6 +17253,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15958,6 +17281,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15988,6 +17315,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16023,6 +17354,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16047,6 +17382,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16071,6 +17410,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16095,6 +17438,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16119,6 +17466,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16143,6 +17494,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16168,6 +17523,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16194,6 +17553,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16220,6 +17583,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16244,6 +17611,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16269,6 +17640,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16292,6 +17667,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16316,6 +17695,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16342,6 +17725,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16366,6 +17753,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16407,6 +17798,9 @@ Other False False True + False + False + False @@ -16424,7 +17818,7 @@ Other 6 - + True True GTK_RELIEF_NORMAL @@ -16477,7 +17871,7 @@ Other - + True True GTK_RELIEF_NORMAL @@ -16553,6 +17947,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16623,6 +18021,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16707,6 +18109,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16742,6 +18148,9 @@ Other False False True + False + False + False @@ -16885,6 +18294,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16968,7 +18381,7 @@ Other - + True Select an existing media object from the database and place it in this gallery True @@ -17096,6 +18509,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17131,6 +18548,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17155,6 +18576,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17179,6 +18604,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17202,6 +18631,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17226,6 +18659,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17267,6 +18704,9 @@ Other False False True + False + False + False @@ -17284,7 +18724,7 @@ Other 6 - + True True GTK_RELIEF_NORMAL @@ -17364,7 +18804,7 @@ Other - + True True GTK_RELIEF_NORMAL @@ -17440,6 +18880,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17493,6 +18937,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17529,6 +18977,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17599,6 +19048,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -17636,6 +19089,9 @@ Other False False True + False + False + False @@ -17714,6 +19170,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17743,6 +19203,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17778,6 +19242,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17825,6 +19293,10 @@ Other 3 3 lastnamegen + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17839,6 +19311,8 @@ Other True + False + True 1 @@ -17876,6 +19350,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17911,6 +19389,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17981,6 +19463,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18000,6 +19486,8 @@ Icons Only Text Only Text Below Icons Text Beside Icons + False + True 1 @@ -18037,6 +19525,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18096,6 +19588,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18120,6 +19616,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18190,6 +19690,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18297,6 +19801,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18333,6 +19841,10 @@ Text Beside Icons 5 5 date_format + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18357,6 +19869,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18371,6 +19887,8 @@ Text Beside Icons True + False + True 2 @@ -18408,6 +19926,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18444,6 +19966,10 @@ Text Beside Icons 0 0 resname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18469,6 +19995,10 @@ Text Beside Icons 0 0 resaddr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18494,6 +20024,10 @@ Text Beside Icons 0 0 rescity + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18519,6 +20053,10 @@ Text Beside Icons 0 0 resstate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18544,6 +20082,10 @@ Text Beside Icons 0 0 rescountry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18569,6 +20111,10 @@ Text Beside Icons 0 0 respostal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18594,6 +20140,10 @@ Text Beside Icons 0 0 resphone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18619,6 +20169,10 @@ Text Beside Icons 0 0 resemail + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18639,7 +20193,7 @@ Text Beside Icons 0 True - * + * False @@ -18660,7 +20214,7 @@ Text Beside Icons 0 True - * + * False @@ -18681,7 +20235,7 @@ Text Beside Icons 0 True - * + * False @@ -18702,7 +20256,7 @@ Text Beside Icons 0 True - * + * False @@ -18723,7 +20277,7 @@ Text Beside Icons 0 True - * + * False @@ -18744,7 +20298,7 @@ Text Beside Icons 0 True - * + * False @@ -18765,7 +20319,7 @@ Text Beside Icons 0 True - * + * False @@ -18786,7 +20340,7 @@ Text Beside Icons 0 True - * + * False @@ -18811,6 +20365,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18848,6 +20406,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18884,6 +20446,10 @@ Text Beside Icons 2 2 iprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18909,6 +20475,10 @@ Text Beside Icons 2 2 fprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18934,6 +20504,10 @@ Text Beside Icons 2 2 pprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18959,6 +20533,10 @@ Text Beside Icons 2 2 sprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18984,6 +20562,10 @@ Text Beside Icons 2 2 oprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19004,7 +20586,7 @@ Text Beside Icons 0 I True - * + * False @@ -19025,7 +20607,7 @@ Text Beside Icons 0 F True - * + * False @@ -19046,7 +20628,7 @@ Text Beside Icons 0 P True - * + * False @@ -19067,7 +20649,7 @@ Text Beside Icons 0 S True - * + * False @@ -19088,7 +20670,7 @@ Text Beside Icons 0 O True - * + * False @@ -19113,6 +20695,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19150,6 +20736,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19201,6 +20791,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19285,6 +20876,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -19323,6 +20918,10 @@ Text Beside Icons 0 0 conf + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19348,6 +20947,10 @@ Text Beside Icons 0 0 spage + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19373,6 +20976,10 @@ Text Beside Icons 0 0 sdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19400,6 +21007,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19427,6 +21038,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19454,6 +21069,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19478,6 +21097,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19502,6 +21125,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19526,6 +21153,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19550,6 +21181,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19574,6 +21209,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19598,6 +21237,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19776,7 +21419,7 @@ Text Beside Icons 0 True - * + * False @@ -19825,6 +21468,8 @@ Low Normal High Very High + False + True 2 @@ -19839,6 +21484,8 @@ Very High True + False + True 2 @@ -19890,6 +21537,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19973,6 +21621,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -20005,6 +21657,9 @@ Very High False False True + False + False + False @@ -20156,6 +21811,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20223,6 +21879,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20248,6 +21908,9 @@ Very High True False True + False + False + False @@ -20301,6 +21964,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20367,6 +22031,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20414,6 +22082,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -20450,6 +22122,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20475,6 +22151,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20498,6 +22178,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20521,6 +22205,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20546,6 +22234,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20571,6 +22263,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20596,6 +22292,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20619,6 +22319,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20642,6 +22346,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20665,6 +22373,10 @@ Very High 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20690,6 +22402,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20733,6 +22449,9 @@ Very High True False True + False + False + False @@ -20769,6 +22488,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20837,6 +22557,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20868,6 +22592,9 @@ Very High False False True + False + False + False @@ -20988,6 +22715,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21057,6 +22785,10 @@ Very High 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -21085,6 +22817,10 @@ Very High 0 0 style_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21106,7 +22842,7 @@ Very High 0 True - * + * False @@ -21155,6 +22891,9 @@ Very High False False True + False + False + False @@ -21194,6 +22933,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21215,6 +22958,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21242,6 +22989,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21271,6 +23022,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21402,6 +23157,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21426,6 +23185,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21450,6 +23213,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21474,6 +23241,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21499,6 +23270,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -21574,6 +23349,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21623,6 +23402,10 @@ Very High 0 0 rmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21651,6 +23434,10 @@ Very High 0 0 lmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21679,6 +23466,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21706,6 +23497,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21730,6 +23525,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21754,6 +23553,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21774,7 +23577,7 @@ Very High 0 True - * + * False @@ -21795,7 +23598,7 @@ Very High 0 True - * + * False @@ -21816,7 +23619,7 @@ Very High 0 True - * + * False @@ -21932,6 +23735,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21956,6 +23763,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21981,6 +23792,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22005,6 +23820,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22029,6 +23848,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22141,6 +23964,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22161,7 +23988,7 @@ Very High 0 True - * + * False @@ -22186,6 +24013,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22211,6 +24042,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22241,6 +24076,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22286,6 +24125,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22367,6 +24207,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -22434,6 +24278,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22481,6 +24329,10 @@ Very High 0 0 photoDescription + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22501,7 +24353,7 @@ Very High 0 True - * + * False @@ -22568,6 +24420,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22653,6 +24506,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22699,6 +24556,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22735,6 +24596,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22759,6 +24624,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22783,6 +24652,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22807,6 +24680,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22831,6 +24708,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22855,6 +24736,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22880,6 +24765,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22904,6 +24793,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22963,6 +24856,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22987,6 +24884,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23011,6 +24912,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23035,6 +24940,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23055,7 +24964,7 @@ Very High 0 True - * + * False @@ -23076,7 +24985,7 @@ Very High 0 True - * + * False @@ -23097,7 +25006,7 @@ Very High 0 True - * + * False @@ -23118,7 +25027,7 @@ Very High 0 True - * + * False @@ -23143,6 +25052,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23189,6 +25102,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23219,6 +25136,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23289,6 +25210,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23373,6 +25298,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23428,6 +25357,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23463,6 +25396,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23487,6 +25424,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23511,6 +25452,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23534,6 +25479,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23558,6 +25507,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23600,6 +25553,9 @@ Very High True False True + False + False + False @@ -23748,6 +25704,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23783,6 +25743,9 @@ Very High False False True + False + False + False @@ -23926,6 +25889,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23965,6 +25932,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -23994,7 +25962,7 @@ Very High - + True True True @@ -24050,6 +26018,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24096,6 +26068,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -24132,6 +26108,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24156,6 +26136,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24180,6 +26164,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24204,6 +26192,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24227,6 +26219,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24251,6 +26247,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24317,6 +26317,10 @@ Very High 0 0 description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24337,7 +26341,7 @@ Very High 0 True - * + * False @@ -24362,6 +26366,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24387,6 +26395,10 @@ Very High 0 0 place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24407,7 +26419,7 @@ Very High 0 True - * + * False @@ -24434,7 +26446,7 @@ Very High 0 True - * + * False @@ -24505,6 +26517,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24540,6 +26556,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24564,6 +26584,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24587,6 +26611,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24611,6 +26639,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24635,6 +26667,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24676,6 +26712,9 @@ Very High False False True + False + False + False @@ -24693,7 +26732,7 @@ Very High 6 - + True Creates a new attribute from the above data True @@ -24747,7 +26786,7 @@ Very High - + True Delete the selected attribute True @@ -24825,6 +26864,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24895,6 +26938,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24979,6 +27026,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25001,6 +27052,9 @@ Very High False False True + False + False + False @@ -25023,6 +27077,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25058,6 +27116,9 @@ Very High False False True + False + False + False @@ -25201,6 +27262,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25237,6 +27302,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25294,6 +27360,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25318,6 +27388,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25371,6 +27445,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25456,6 +27531,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25500,6 +27579,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25555,6 +27638,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25625,6 +27709,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25669,6 +27757,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25702,6 +27794,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25772,6 +27865,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25816,6 +27913,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25849,6 +27950,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25906,6 +28008,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25950,6 +28056,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25983,6 +28093,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26040,6 +28151,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26084,6 +28199,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26117,6 +28236,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26188,6 +28308,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26276,6 +28400,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26321,6 +28449,10 @@ Very High 0.5 6 24 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26365,6 +28497,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26424,6 +28560,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26511,6 +28648,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26553,6 +28694,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26578,6 +28723,10 @@ Very High 0 0 eventDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26606,6 +28755,10 @@ Very High 0 0 event_description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26634,6 +28787,10 @@ Very High 0 3 eventPlace + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26662,6 +28819,10 @@ Very High 0 0 eventCause + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26685,7 +28846,7 @@ Very High 0 True - * + * False @@ -26706,7 +28867,7 @@ Very High 0 True - * + * False @@ -26727,7 +28888,7 @@ Very High 0 True - * + * False @@ -26748,7 +28909,7 @@ Very High 0 True - * + * False @@ -26785,6 +28946,9 @@ Very High True + False + True + True 1 @@ -26842,6 +29006,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26877,6 +29045,9 @@ Very High False False True + False + False + False @@ -27020,6 +29191,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27093,6 +29268,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27177,6 +29356,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27213,6 +29396,9 @@ Very High False False True + False + False + False @@ -27356,6 +29542,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27567,6 +29757,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27605,6 +29799,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27689,6 +29884,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27731,6 +29930,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27756,6 +29959,10 @@ Very High 0 0 attr_value + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27801,7 +30008,7 @@ Very High 0 True - * + * False @@ -27816,6 +30023,9 @@ Very High True + False + True + True 1 @@ -27846,6 +30056,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27881,6 +30095,9 @@ Very High False False True + False + False + False @@ -28024,6 +30241,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28095,6 +30316,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28179,6 +30404,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28217,6 +30446,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28301,6 +30531,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28333,6 +30567,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28361,6 +30599,10 @@ Very High 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28389,6 +30631,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -28418,6 +30664,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -28447,6 +30697,10 @@ Very High 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28471,7 +30725,7 @@ Very High 0 True - * + * False @@ -28492,7 +30746,7 @@ Very High 0 True - * + * False @@ -28513,7 +30767,7 @@ Very High 0 True - * + * False @@ -28534,7 +30788,7 @@ Very High 0 True - * + * False @@ -28555,7 +30809,7 @@ Very High 0 True - * + * False @@ -28581,6 +30835,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28601,7 +30859,7 @@ Very High 0 True - * + * False @@ -28627,6 +30885,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28647,7 +30909,7 @@ Very High 0 True - * + * False @@ -28691,6 +30953,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28776,6 +31039,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28819,6 +31086,10 @@ Very High 0 0 address_start + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28847,6 +31118,10 @@ Very High 0 0 street + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28875,6 +31150,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28903,6 +31182,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28931,6 +31214,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28959,6 +31246,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29005,7 +31296,7 @@ Very High 0 True - * + * False @@ -29026,7 +31317,7 @@ Very High 0 True - * + * False @@ -29047,7 +31338,7 @@ Very High 0 True - * + * False @@ -29068,7 +31359,7 @@ Very High 0 True - * + * False @@ -29089,7 +31380,7 @@ Very High 0 True - * + * False @@ -29110,7 +31401,7 @@ Very High 0 True - * + * False @@ -29136,6 +31427,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29156,7 +31451,7 @@ Very High 0 True - * + * False @@ -29214,6 +31509,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29249,6 +31548,9 @@ Very High False False True + False + False + False @@ -29392,6 +31694,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29463,6 +31769,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29547,6 +31857,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29585,6 +31899,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29670,6 +31985,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29702,6 +32021,10 @@ Very High 0 0 url_addr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29730,6 +32053,10 @@ Very High 0 0 url_des + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29789,7 +32116,7 @@ Very High 0 True - * + * False @@ -29811,7 +32138,7 @@ Very High 0 True - * + * False @@ -29855,6 +32182,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -29941,6 +32269,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29984,6 +32316,10 @@ Very High 0 0 alt_given + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30012,6 +32348,10 @@ Very High 0 0 alt_suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30039,6 +32379,10 @@ Very High 0 1 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30067,6 +32411,10 @@ Very High 0 0 alt_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30117,6 +32465,10 @@ Very High 0 0 alt_prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30141,7 +32493,7 @@ Very High 0 True - * + * False @@ -30162,7 +32514,7 @@ Very High 0 True - * + * False @@ -30183,7 +32535,7 @@ Very High 0 True - * + * False @@ -30204,7 +32556,7 @@ Very High 0 True - * + * False @@ -30230,6 +32582,10 @@ Very High 0 0 patronymic + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30257,6 +32613,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30274,6 +32634,9 @@ Very High True + False + True + True 2 @@ -30294,7 +32657,7 @@ Very High 0 True - * + * False @@ -30323,6 +32686,10 @@ Very High 0 0 group_as + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30350,6 +32717,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30374,7 +32745,7 @@ Very High 0 True - * + * False @@ -30399,6 +32770,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30426,6 +32801,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30450,6 +32829,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30487,6 +32870,9 @@ Very High True + False + True + True 2 @@ -30504,6 +32890,8 @@ Very High Default (based on locale) Family name, Given name Given name, Family name + False + True 2 @@ -30522,6 +32910,8 @@ Given name, Family name Given name Family name Family name Given name + False + True 2 @@ -30552,6 +32942,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30588,6 +32982,9 @@ Family name Given name False False True + False + False + False @@ -30731,6 +33128,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30803,6 +33204,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30887,6 +33292,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30925,6 +33334,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31008,6 +33418,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31040,6 +33454,10 @@ Family name Given name 0 0 name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31068,6 +33486,10 @@ Family name Given name 0 0 scrolledwindow30 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31091,7 +33513,7 @@ Family name Given name 0 True - * + * False @@ -31248,6 +33670,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -31318,6 +33741,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31417,6 +33844,10 @@ Family name Given name 0.5 6 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31440,6 +33871,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31474,6 +33909,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -31498,6 +33934,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31522,6 +33962,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31546,6 +33990,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31593,6 +34041,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31672,6 +34121,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31706,6 +34159,10 @@ Family name Given name 0 0 calendar_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -31718,6 +34175,8 @@ Family name Given name True + False + True 6 @@ -31756,6 +34215,10 @@ Family name Given name 6 0 quality_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31771,6 +34234,8 @@ Family name Given name True + False + True 1 @@ -31798,6 +34263,10 @@ Family name Given name 6 0 type_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -31813,6 +34282,8 @@ Family name Given name True + False + True 5 @@ -31839,6 +34310,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31864,6 +34339,10 @@ Family name Given name 0 0 start_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31889,6 +34368,10 @@ Family name Given name 0 0 start_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31914,6 +34397,10 @@ Family name Given name 0 0 start_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -31951,6 +34438,8 @@ Family name Given name True + False + True 2 @@ -31997,6 +34486,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -32022,6 +34515,10 @@ Family name Given name 0 0 stop_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -32047,6 +34544,10 @@ Family name Given name 0 0 stop_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32072,6 +34573,10 @@ Family name Given name 0 0 stop_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -32109,6 +34614,8 @@ Family name Given name True + False + True 6 @@ -32169,6 +34676,10 @@ Family name Given name 0 0 date_text_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32186,7 +34697,7 @@ Family name Given name 0 True - * + * False @@ -32235,6 +34746,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -32302,6 +34814,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32329,6 +34845,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32346,7 +34866,7 @@ Family name Given name 0 True - * + * False