From 25c9f77a18bb22cef1bb515e7700adb225397549 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 26 May 2005 05:04:36 +0000 Subject: [PATCH] * src/EditPlace.py: WATCH cursor and temp label for References tab. * src/EditSource.py: Improve manipulating notebook tab labels. * src/Utils.py (temp_label): Add function; (bold_label,unbold_label): Properly set cursor to default. * src/gramps.glade (event editor, source editor, place editor): Add icons to notebook tabs. svn: r4683 --- ChangeLog | 8 + src/EditPlace.py | 14 +- src/EditSource.py | 32 +- src/Utils.py | 60 +- src/gramps.glade | 2949 ++++++++------------------------------------- 5 files changed, 570 insertions(+), 2493 deletions(-) diff --git a/ChangeLog b/ChangeLog index 63db0969f..29b11f48c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-05-25 Alex Roitman + * src/EditPlace.py: WATCH cursor and temp label for References tab. + * src/EditSource.py: Improve manipulating notebook tab labels. + * src/Utils.py (temp_label): Add function; + (bold_label,unbold_label): Properly set cursor to default. + * src/gramps.glade (event editor, source editor, place editor): + Add icons to notebook tabs. + 2005-05-25 Richard Taylor * src/plugins/ScratchPad.py: disabled search because it does not do what the user expects. diff --git a/src/EditPlace.py b/src/EditPlace.py index f41ba2dae..77c548028 100644 --- a/src/EditPlace.py +++ b/src/EditPlace.py @@ -182,12 +182,16 @@ class EditPlace: self.preform.set_active(1) else: self.flowed.set_active(1) + else: + Utils.unbold_label(self.notes_label) self.flowed.set_sensitive(mode) self.preform.set_sensitive(mode) if self.place.get_media_list(): Utils.bold_label(self.gallery_label) + else: + Utils.unbold_label(self.gallery_label) self.top_window.signal_autoconnect({ "on_switch_page" : self.on_switch_page, @@ -237,12 +241,13 @@ class EditPlace: self.redraw_url_list() self.redraw_location_list() - self.display_references() if parent_window: self.top.set_transient_for(parent_window) self.add_itself_to_menu() self.top_window.get_widget('ok').set_sensitive(not self.db.readonly) + Utils.temp_label(self.refs_label,self.top) self.top.show() + gobject.idle_add(self.display_references) def on_delete_event(self,obj,b): self.glry.close() @@ -407,7 +412,8 @@ class EditPlace: self.glry.load_images() elif page == 6 and self.ref_not_loaded: self.ref_not_loaded = 0 - self.display_references() + Utils.temp_label(self.refs_label,self.top) + gobject.idle_add(self.display_references) text = unicode(self.note_buffer.get_text(self.note_buffer.get_start_iter(), self.note_buffer.get_end_iter(),False)) if text: @@ -544,7 +550,9 @@ class EditPlace: self.refinfo.get_buffer().set_text(msg) if any: - Utils.bold_label(self.refs_label) + Utils.bold_label(self.refs_label,self.top) + else: + Utils.unbold_label(self.refs_label,self.top) self.ref_not_loaded = 0 diff --git a/src/EditSource.py b/src/EditSource.py index ebc1d1252..a1b2b58b3 100644 --- a/src/EditSource.py +++ b/src/EditSource.py @@ -34,7 +34,6 @@ from gettext import gettext as _ #------------------------------------------------------------------------- import gobject import gtk.glade -import gtk.gdk import gnome #------------------------------------------------------------------------- @@ -96,9 +95,10 @@ class EditSource: 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.gallery_label = self.top_window.get_widget("source_edit_gallery") + self.refs_label = self.top_window.get_widget("source_edit_refs") + self.notes_label = self.top_window.get_widget("source_edit_notes") + self.data_label = self.top_window.get_widget("source_edit_data") self.flowed = self.top_window.get_widget("source_flowed") self.flowed.set_sensitive(mode) self.preform = self.top_window.get_widget("source_preform") @@ -129,9 +129,13 @@ class EditSource: self.preform.set_active(1) else: self.flowed.set_active(1) + else: + Utils.unbold_label(self.notes_label) if self.source.get_media_list(): Utils.bold_label(self.gallery_label) + else: + Utils.unbold_label(self.gallery_label) self.top_window.signal_autoconnect({ "on_switch_page" : self.on_switch_page, @@ -177,6 +181,11 @@ class EditSource: for item in dmap.keys(): self.data_model.append(row=[item,dmap[item]]) + if dmap: + Utils.bold_label(self.data_label) + else: + Utils.unbold_label(self.data_label) + if parent_window: self.top.set_transient_for(parent_window) @@ -186,7 +195,7 @@ class EditSource: self.top.set_transient_for(parent_window) self.add_itself_to_menu() self.top.show() - self.refs_label.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH)) + Utils.temp_label(self.refs_label,self.top) gobject.idle_add(self.display_references) self.data_sel = self.datalist.get_selection() @@ -346,12 +355,11 @@ class EditSource: self.model.add([_("Media"),gramps_id,name],(5,handle)) if any: - Utils.bold_label(self.refs_label) + Utils.bold_label(self.refs_label,self.top) else: - Utils.unbold_label(self.refs_label) + Utils.unbold_label(self.refs_label,self.top) self.ref_not_loaded = 0 - self.refs_label.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)) def on_source_apply_clicked(self,obj): @@ -407,14 +415,14 @@ class EditSource: self.gallery.load_images() elif page == 3 and self.ref_not_loaded: self.ref_not_loaded = 0 - self.refs_label.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH)) - gobject.idle_add(self.display_references) + Utils.temp_label(self.refs_label,self.top) + gobject.idle_add(display_references) text = unicode(self.notes_buffer.get_text(self.notes_buffer.get_start_iter(), self.notes_buffer.get_end_iter(),False)) if text: - Utils.bold_label(self.notes_label) + Utils.bold_label(self.notes_label,self.top) else: - Utils.unbold_label(self.notes_label) + Utils.unbold_label(self.notes_label,self.top) class DelSrcQuery: diff --git a/src/Utils.py b/src/Utils.py index 40810ac2b..9ce3e79e3 100644 --- a/src/Utils.py +++ b/src/Utils.py @@ -34,6 +34,7 @@ import locale # #------------------------------------------------------------------------- import gtk +import gtk.gdk import gnome try: @@ -402,33 +403,40 @@ def search_for(name): # Change label apperance # #------------------------------------------------------------------------- -def bold_label(label): - try: - clist = label.get_children() - text = unicode(clist[1].get_text()) - clist[0].show() - clist[1].set_text("%s" % text ) - clist[1].set_use_markup(True) - except AttributeError: - text = unicode(label.get_text()) - label.set_text("%s" % text ) - label.set_use_markup(1) +def bold_label(label,widget=None): + clist = label.get_children() + text = unicode(clist[1].get_text()) + text = text.replace('','') + text = text.replace('','') + clist[0].show() + clist[1].set_text("%s" % text ) + clist[1].set_use_markup(True) + if widget: + widget.window.set_cursor(None) + +def unbold_label(label,widget=None): + clist = label.get_children() + text = unicode(clist[1].get_text()) + text = text.replace('','') + text = text.replace('','') + text = text.replace('','') + text = text.replace('','') + clist[0].hide() + clist[1].set_text(text) + clist[1].set_use_markup(False) + if widget: + widget.window.set_cursor(None) -def unbold_label(label): - try: - clist = label.get_children() - text = unicode(clist[1].get_text()) - text = text.replace('','') - text = text.replace('','') - clist[0].hide() - clist[1].set_text(text) - clist[1].set_use_markup(False) - except AttributeError: - text = unicode(label.get_text()) - text = text.replace('','') - text = text.replace('','') - label.set_text(text) - label.set_use_markup(0) +def temp_label(label,widget=None): + clist = label.get_children() + text = unicode(clist[1].get_text()) + text = text.replace('','') + text = text.replace('','') + clist[0].hide() + clist[1].set_text("%s" % text ) + clist[1].set_use_markup(True) + if widget: + widget.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH)) #------------------------------------------------------------------------- # diff --git a/src/gramps.glade b/src/gramps.glade index f52f67c34..150ae1a07 100644 --- a/src/gramps.glade +++ b/src/gramps.glade @@ -19,7 +19,6 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST - True True @@ -1037,10 +1036,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1089,10 +1084,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1141,10 +1132,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1193,10 +1180,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1245,10 +1228,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1297,10 +1276,6 @@ 0 0 views - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1346,8 +1321,6 @@ True - False - True 0 @@ -1369,10 +1342,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1461,9 +1430,6 @@ False False True - False - False - False @@ -1493,10 +1459,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -1785,9 +1747,6 @@ True False True - False - False - False @@ -1911,10 +1870,6 @@ 0 0 chlist - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1940,10 +1895,6 @@ 0 0 ap_data - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -1969,10 +1920,6 @@ 0 0 ap_parents - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -1998,10 +1945,6 @@ 0 0 sp_list - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -2027,10 +1970,6 @@ 0 0 sp_parents - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -2060,9 +1999,6 @@ True True True - False - False - False @@ -2093,9 +2029,6 @@ True False True - False - False - False @@ -2126,9 +2059,6 @@ True False True - False - False - False @@ -2159,9 +2089,6 @@ True True True - False - False - False @@ -2317,10 +2244,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -2355,9 +2278,6 @@ True True True - False - False - False @@ -2384,10 +2304,6 @@ 0 0 chlist2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -2417,9 +2333,6 @@ True True True - False - False - False @@ -2450,9 +2363,6 @@ True False True - False - False - False @@ -2483,9 +2393,6 @@ True False True - False - False - False @@ -2516,9 +2423,6 @@ True False True - False - False - False @@ -2669,10 +2573,6 @@ 0 0 sp_parents2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -2795,10 +2695,6 @@ 0 0 sp_list2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -2921,10 +2817,6 @@ 0 0 ap_data2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -2950,10 +2842,6 @@ 0 0 ap_parents2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -3111,10 +2999,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -3162,10 +3046,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -3195,9 +3075,6 @@ True False True - False - False - False @@ -3227,10 +3104,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -3260,9 +3133,6 @@ True False True - False - False - False @@ -3292,10 +3162,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -3347,10 +3213,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 label_item @@ -3387,10 +3249,6 @@ 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -3416,10 +3274,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -3443,10 +3297,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -3470,10 +3320,6 @@ 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -3499,10 +3345,6 @@ 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -3528,10 +3370,6 @@ 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -3557,10 +3395,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -3584,10 +3418,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -3611,10 +3441,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -3638,10 +3464,6 @@ 0 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -3667,10 +3489,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -3714,9 +3532,6 @@ True False True - False - False - False @@ -3746,10 +3561,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -3802,7 +3613,6 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -3879,10 +3689,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -3921,9 +3727,6 @@ False False True - False - False - False @@ -4031,10 +3834,6 @@ 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4054,8 +3853,6 @@ Unmarried Civil Union Unknown Other - False - True 1 @@ -4114,7 +3911,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -4199,10 +3995,6 @@ Other 0.5 0 6 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4240,10 +4032,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -4268,10 +4056,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -4296,10 +4080,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -4325,10 +4105,6 @@ Other 0 0 father_list - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4424,10 +4200,6 @@ Other 0 0 mother_list - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4452,10 +4224,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4485,9 +4253,6 @@ Other True False True - False - False - False @@ -4517,9 +4282,6 @@ Other True False True - False - False - False @@ -4595,8 +4357,6 @@ Other True - False - True 2 @@ -4611,8 +4371,6 @@ Other True - False - True 2 @@ -4664,7 +4422,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -4749,10 +4506,6 @@ Other 0.5 0 6 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4798,9 +4551,6 @@ Other True False True - False - False - False @@ -4900,10 +4650,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4928,10 +4674,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -4946,8 +4688,6 @@ Other True - False - True 1 @@ -4961,8 +4701,6 @@ Other True - False - True 1 @@ -5000,7 +4738,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -5087,10 +4824,6 @@ Other 0.5 0 5 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -5135,10 +4868,6 @@ Other 0 0 source_title - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -5164,10 +4893,6 @@ Other 0 0 author - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -5239,10 +4964,6 @@ Other 0 0 pubinfo - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -5310,10 +5031,6 @@ Other 0 0 abbrev - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -5332,22 +5049,48 @@ Other - + True - <b>General</b> - False - True - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + <b>General</b> + False + True + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -5418,10 +5161,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -5494,22 +5233,48 @@ Other - + True - Note - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Note + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -5540,9 +5305,6 @@ Other True False True - False - False - False @@ -5630,22 +5392,48 @@ Other - + True - Data - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Data + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -5847,22 +5635,48 @@ Other - + True - Gallery - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Gallery + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -5886,9 +5700,6 @@ Other False False True - False - False - False @@ -5899,22 +5710,48 @@ Other - + True - References - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + References + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -5954,7 +5791,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -6040,10 +5876,6 @@ Other 0.5 10 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6117,7 +5949,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -6199,10 +6030,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 10 @@ -6240,10 +6067,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -6268,10 +6091,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -6295,10 +6114,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -6323,10 +6138,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -6351,10 +6162,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Relationship: @@ -6382,10 +6189,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -6410,10 +6213,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6438,10 +6237,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6465,10 +6260,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6506,8 +6297,6 @@ Other True - False - True 2 @@ -6523,8 +6312,6 @@ Other True - False - True 2 @@ -6574,7 +6361,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -6665,10 +6451,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6704,10 +6486,6 @@ Other 0 0 entry - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -6766,7 +6544,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -6843,9 +6620,6 @@ Other False True True - False - False - False @@ -6870,10 +6644,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -6909,7 +6679,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -6990,10 +6759,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 10 @@ -7052,10 +6817,6 @@ Other 0 0 givenName - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7081,10 +6842,6 @@ Other 0 0 surname - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7110,10 +6867,6 @@ Other 0 0 prefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7139,10 +6892,6 @@ Other 0 0 suffix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7168,10 +6917,6 @@ Other 0 0 title - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7197,10 +6942,6 @@ Other 0 0 nickname - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7225,10 +6966,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7254,10 +6991,6 @@ Other 0 0 birthDate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7348,10 +7081,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -7454,10 +7183,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -7483,10 +7208,6 @@ Other 0 0 gid - PANGO_ELLIPSIZE_NONE - -1 - False - 0 7 @@ -7533,10 +7254,6 @@ Other 0 0 birth_place - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -7561,10 +7278,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -7590,10 +7303,6 @@ Other 0 0 deathDate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Date: @@ -7622,10 +7331,6 @@ Other 0 0 death_place - PANGO_ELLIPSIZE_NONE - -1 - False - 0 7 @@ -7682,9 +7387,6 @@ Other True - False - True - True 2 @@ -7866,10 +7568,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -7893,10 +7591,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -8401,10 +8095,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -8446,10 +8136,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -8474,10 +8160,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -8502,10 +8184,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -8530,10 +8208,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -8558,10 +8232,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -8586,10 +8256,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -8614,10 +8280,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -8642,10 +8304,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -8670,10 +8328,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -8698,10 +8352,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -8726,10 +8376,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -8753,10 +8399,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -8780,10 +8422,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -8807,10 +8445,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -8834,10 +8468,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -8861,10 +8491,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -8888,10 +8514,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -8915,10 +8537,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -8981,9 +8599,6 @@ Other False False True - False - False - False @@ -9122,10 +8737,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -9167,10 +8778,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -9195,10 +8802,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9223,10 +8826,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9251,10 +8850,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9279,10 +8874,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9307,10 +8898,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9335,10 +8922,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -9363,10 +8946,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9391,10 +8970,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -9419,10 +8994,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9447,10 +9018,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9475,10 +9042,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9503,10 +9066,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9531,10 +9090,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9558,10 +9113,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -9585,10 +9136,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -9631,9 +9178,6 @@ Other False True True - False - False - False @@ -9779,10 +9323,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -9824,10 +9364,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -9852,10 +9388,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9880,10 +9412,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9908,10 +9436,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -9936,10 +9460,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -9964,10 +9484,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -9992,10 +9508,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10020,10 +9532,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10047,10 +9555,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -10074,10 +9578,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10120,9 +9620,6 @@ Other False False True - False - False - False @@ -10268,10 +9765,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -10307,10 +9800,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10335,10 +9824,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10363,10 +9848,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10391,10 +9872,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10419,10 +9896,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10447,10 +9920,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -10475,10 +9944,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -10503,10 +9968,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -10531,10 +9992,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -10559,10 +10016,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -10587,10 +10040,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10615,10 +10064,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10643,10 +10088,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -10671,10 +10112,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -10699,10 +10136,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -10726,10 +10159,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10753,10 +10182,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10781,10 +10206,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10809,10 +10230,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -10837,10 +10254,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -10915,9 +10328,6 @@ Other False False True - False - False - False @@ -11063,10 +10473,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -11140,10 +10546,6 @@ Other 0 0 flowed - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -11228,10 +10630,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -11261,9 +10659,6 @@ Other False False True - False - False - False @@ -11390,10 +10785,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -11592,10 +10983,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -11631,10 +11018,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -11659,10 +11042,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -11687,10 +11066,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -11715,10 +11090,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -11742,10 +11113,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -11788,9 +11155,6 @@ Other False False True - False - False - False @@ -11957,10 +11321,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -11990,10 +11350,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -12019,10 +11375,6 @@ Other 0 0 ldsbapdate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -12047,10 +11399,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Temple: @@ -12099,10 +11447,6 @@ Other 0 0 lds_bap_place - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -12171,10 +11515,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -12200,10 +11540,6 @@ Other 0 0 endowdate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Date: @@ -12231,10 +11567,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -12260,10 +11592,6 @@ Other 0 0 lds_end_place - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -12353,10 +11681,6 @@ Other 0 0 sealdate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -12381,10 +11705,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -12430,10 +11750,6 @@ Other 0 0 lds_seal_place - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -12503,10 +11819,6 @@ Other 0 0 sealparents - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -12531,10 +11843,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -12549,8 +11857,6 @@ Other True - False - True 3 @@ -12565,8 +11871,6 @@ Other True - False - True 3 @@ -12581,8 +11885,6 @@ Other True - False - True 3 @@ -12597,8 +11899,6 @@ Other True - False - True 2 @@ -12613,8 +11913,6 @@ Other True - False - True 2 @@ -12629,8 +11927,6 @@ Other True - False - True 2 @@ -12645,8 +11941,6 @@ Other True - False - True 2 @@ -12856,10 +12150,6 @@ Other 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -12891,7 +12181,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -12979,10 +12268,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -13031,10 +12316,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -13060,10 +12341,6 @@ Other 0 0 gid - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -13103,8 +12380,6 @@ Other True - False - True 1 @@ -13129,10 +12404,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -13157,10 +12428,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13220,10 +12487,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -13259,10 +12522,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13287,10 +12546,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13315,10 +12570,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13343,10 +12594,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13371,10 +12618,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13399,10 +12642,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13427,10 +12666,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -13455,10 +12690,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -13482,10 +12713,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -13510,10 +12737,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -13538,10 +12761,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13565,10 +12784,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13592,10 +12807,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13620,10 +12831,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13648,10 +12855,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13675,10 +12878,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -13720,9 +12919,6 @@ Other False False True - False - False - False @@ -13858,10 +13054,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -13897,10 +13089,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13925,10 +13113,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -13953,10 +13137,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -13981,10 +13161,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -14009,10 +13185,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -14037,10 +13209,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -14065,10 +13233,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -14093,10 +13257,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -14120,10 +13280,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -14147,10 +13303,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -14192,9 +13344,6 @@ Other False False True - False - False - False @@ -14330,10 +13479,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -14404,10 +13549,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -14492,10 +13633,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -14525,9 +13662,6 @@ Other False False True - False - False - False @@ -14651,10 +13785,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -14840,10 +13970,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -14879,10 +14005,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -14907,10 +14029,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -14935,10 +14053,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -14963,10 +14077,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -15021,9 +14131,6 @@ Other True - False - True - True 2 @@ -15038,8 +14145,6 @@ Other True - False - True 3 @@ -15054,8 +14159,6 @@ Other True - False - True 2 @@ -15153,10 +14256,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -15196,7 +14295,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -15281,10 +14379,6 @@ Other 0.5 0 5 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -15328,10 +14422,6 @@ Other 0 0 place_title - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15360,10 +14450,6 @@ Other 0 0 city - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15392,10 +14478,6 @@ Other 0 0 state - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15424,10 +14506,6 @@ Other 0 0 county - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15456,10 +14534,6 @@ Other 0 0 country - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15488,10 +14562,6 @@ Other 0 0 longitude - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15520,10 +14590,6 @@ Other 0 0 latitude - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -15552,10 +14618,6 @@ Other 0 0 parish - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Church Parish: @@ -15753,10 +14815,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -15782,10 +14840,6 @@ Other 0 0 postal - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -15832,10 +14886,6 @@ Other 0 0 phone - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -15881,10 +14931,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -15909,10 +14955,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -15931,22 +14973,48 @@ Other - + True - <b>General</b> - False - True - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + <b>General</b> + False + True + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -15982,10 +15050,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -16010,10 +15074,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -16038,10 +15098,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -16066,10 +15122,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -16094,10 +15146,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -16122,10 +15170,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -16151,10 +15195,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -16181,10 +15221,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -16211,10 +15247,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -16239,10 +15271,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -16268,10 +15296,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -16295,10 +15319,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -16323,10 +15343,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -16353,10 +15369,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -16381,10 +15393,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -16426,9 +15434,6 @@ Other False False True - False - False - False @@ -16563,22 +15568,48 @@ Other - + True - Other names - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Other names + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -16649,10 +15680,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -16725,22 +15752,48 @@ Other - + True - Note - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Note + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -16776,9 +15829,6 @@ Other False False True - False - False - False @@ -16910,22 +15960,48 @@ Other - + True - Sources - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Sources + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -17125,22 +16201,48 @@ Other - + True - Gallery - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Gallery + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -17176,10 +16278,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -17204,10 +16302,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -17232,10 +16326,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -17259,10 +16349,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -17287,10 +16373,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -17332,9 +16414,6 @@ Other False False True - False - False - False @@ -17496,22 +16575,48 @@ Other - + True - Internet - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Internet + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -17553,22 +16658,48 @@ Other - + True - References - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + 0 + + + + True + gtk-file + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + References + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + tab @@ -17605,7 +16736,6 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -17676,10 +16806,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -17717,9 +16843,6 @@ Other False False True - False - False - False @@ -17798,10 +16921,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -17831,10 +16950,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -17870,10 +16985,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -17921,10 +17032,6 @@ Other 3 3 lastnamegen - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -17939,8 +17046,6 @@ Other True - False - True 1 @@ -17978,10 +17083,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -18017,10 +17118,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18091,10 +17188,6 @@ Other 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18114,8 +17207,6 @@ Icons Only Text Only Text Below Icons Text Beside Icons - False - True 1 @@ -18153,10 +17244,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -18216,10 +17303,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18244,10 +17327,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18318,10 +17397,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18429,10 +17504,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -18469,10 +17540,6 @@ Text Beside Icons 5 5 date_format - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18497,10 +17564,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -18515,8 +17578,6 @@ Text Beside Icons True - False - True 2 @@ -18554,10 +17615,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -18594,10 +17651,6 @@ Text Beside Icons 0 0 resname - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18623,10 +17676,6 @@ Text Beside Icons 0 0 resaddr - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18652,10 +17701,6 @@ Text Beside Icons 0 0 rescity - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18681,10 +17726,6 @@ Text Beside Icons 0 0 resstate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18710,10 +17751,6 @@ Text Beside Icons 0 0 rescountry - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18739,10 +17776,6 @@ Text Beside Icons 0 0 respostal - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18768,10 +17801,6 @@ Text Beside Icons 0 0 resphone - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18797,10 +17826,6 @@ Text Beside Icons 0 0 resemail - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -18993,10 +18018,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -19034,10 +18055,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -19074,10 +18091,6 @@ Text Beside Icons 2 2 iprefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19103,10 +18116,6 @@ Text Beside Icons 2 2 fprefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19132,10 +18141,6 @@ Text Beside Icons 2 2 pprefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19161,10 +18166,6 @@ Text Beside Icons 2 2 sprefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19190,10 +18191,6 @@ Text Beside Icons 2 2 oprefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19323,10 +18320,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -19364,10 +18357,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -19419,7 +18408,6 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -19504,10 +18492,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -19546,10 +18530,6 @@ Text Beside Icons 0 0 conf - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19575,10 +18555,6 @@ Text Beside Icons 0 0 spage - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19604,10 +18580,6 @@ Text Beside Icons 0 0 sdate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -19635,10 +18607,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -19666,10 +18634,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -19697,10 +18661,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19725,10 +18685,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19753,10 +18709,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -19781,10 +18733,6 @@ Text Beside Icons 0.5 3 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -19809,10 +18757,6 @@ Text Beside Icons 0.5 3 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -19837,10 +18781,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -19865,10 +18805,6 @@ Text Beside Icons 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -20096,8 +19032,6 @@ Low Normal High Very High - False - True 2 @@ -20112,8 +19046,6 @@ Very High True - False - True 2 @@ -20165,7 +19097,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -20249,10 +19180,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -20285,9 +19212,6 @@ Very High False False True - False - False - False @@ -20439,7 +19363,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -20507,10 +19430,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -20536,9 +19455,6 @@ Very High True False True - False - False - False @@ -20573,7 +19489,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -20640,10 +19555,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -20691,10 +19602,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 label_item @@ -20731,10 +19638,6 @@ Very High 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -20760,10 +19663,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -20787,10 +19686,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -20814,10 +19709,6 @@ Very High 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -20843,10 +19734,6 @@ Very High 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -20872,10 +19759,6 @@ Very High 0.5 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -20901,10 +19784,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -20928,10 +19807,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -20955,10 +19830,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -20982,10 +19853,6 @@ Very High 0 0 2 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -21011,10 +19878,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21058,9 +19921,6 @@ Very High True False True - False - False - False @@ -21097,7 +19957,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -21166,10 +20025,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21201,9 +20056,6 @@ Very High False False True - False - False - False @@ -21324,7 +20176,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -21394,10 +20245,6 @@ Very High 0.5 5 5 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 10 @@ -21426,10 +20273,6 @@ Very High 0 0 style_name - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -21500,9 +20343,6 @@ Very High False False True - False - False - False @@ -21542,10 +20382,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21567,10 +20403,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21598,10 +20430,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -21631,10 +20459,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -21766,10 +20590,6 @@ Very High 0 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21794,10 +20614,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21822,10 +20638,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21850,10 +20662,6 @@ Very High 0 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -21879,10 +20687,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -21958,10 +20762,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -22011,10 +20811,6 @@ Very High 0 0 rmargin - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -22043,10 +20839,6 @@ Very High 0 0 lmargin - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -22075,10 +20867,6 @@ Very High 0 0 pad - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -22106,10 +20894,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -22134,10 +20918,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -22162,10 +20942,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -22344,10 +21120,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -22372,10 +21144,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -22401,10 +21169,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -22429,10 +21193,6 @@ Very High 0 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -22457,10 +21217,6 @@ Very High 0 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -22573,10 +21329,6 @@ Very High 0 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -22622,10 +21374,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -22651,10 +21399,6 @@ Very High 0 0 pad - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -22685,10 +21429,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -22734,7 +21474,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -22816,10 +21555,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -22887,10 +21622,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 label_item @@ -22938,10 +21669,6 @@ Very High 0 0 photoDescription - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23029,7 +21756,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -23115,10 +21841,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23165,10 +21887,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 label_item @@ -23205,10 +21923,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23233,10 +21947,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23261,10 +21971,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23289,10 +21995,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23317,10 +22019,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23345,10 +22043,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23374,10 +22068,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23402,10 +22092,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23465,10 +22151,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23493,10 +22175,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -23521,10 +22199,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -23549,10 +22223,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -23661,10 +22331,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23711,10 +22377,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23745,10 +22407,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -23819,10 +22477,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -23907,10 +22561,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -23966,10 +22616,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -24005,10 +22651,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24033,10 +22675,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24061,10 +22699,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -24088,10 +22722,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -24116,10 +22746,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -24162,9 +22788,6 @@ Very High True False True - False - False - False @@ -24313,10 +22936,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -24352,9 +22971,6 @@ Very High False False True - False - False - False @@ -24498,10 +23114,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -24541,7 +23153,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -24627,10 +23238,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -24677,10 +23284,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 label_item @@ -24717,10 +23320,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -24745,10 +23344,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -24773,10 +23368,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -24801,10 +23392,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24828,10 +23415,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24856,10 +23439,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24926,10 +23505,6 @@ Very High 0 0 description - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -24975,10 +23550,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -25076,10 +23647,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -25115,10 +23682,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -25143,10 +23706,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -25170,10 +23729,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -25198,10 +23753,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -25226,10 +23777,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -25271,9 +23818,6 @@ Very High False False True - False - False - False @@ -25423,10 +23967,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -25497,10 +24037,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -25585,10 +24121,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -25611,9 +24143,6 @@ Very High False False True - False - False - False @@ -25636,10 +24165,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -25675,9 +24200,6 @@ Very High False False True - False - False - False @@ -25821,10 +24343,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 tab @@ -25861,7 +24379,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -25919,10 +24436,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -25947,10 +24460,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26004,7 +24513,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26090,10 +24598,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26138,10 +24642,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26197,7 +24697,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26268,10 +24767,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26316,10 +24811,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26353,7 +24844,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26424,10 +24914,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26472,10 +24958,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26509,7 +24991,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26567,10 +25048,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26615,10 +25092,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26652,7 +25125,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26710,10 +25182,6 @@ Very High 0.5 6 12 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26758,10 +25226,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -26795,7 +25259,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -26867,10 +25330,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -26959,10 +25418,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27008,10 +25463,6 @@ Very High 0.5 6 24 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -27056,10 +25507,6 @@ Very High 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -27119,7 +25566,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -27207,10 +25653,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27253,10 +25695,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27282,10 +25720,6 @@ Very High 0 0 eventDate - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -27314,10 +25748,6 @@ Very High 0 0 event_description - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -27346,10 +25776,6 @@ Very High 0 3 eventPlace - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -27378,10 +25804,6 @@ Very High 0 0 eventCause - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -27505,9 +25927,6 @@ Very High True - False - True - True 1 @@ -27560,8 +25979,8 @@ Very High + gtk-file 4 - gtk-file 0.5 0.5 0 @@ -27587,10 +26006,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27633,9 +26048,6 @@ Very High False False True - False - False - False @@ -27774,8 +26186,8 @@ Very High + gtk-file 4 - gtk-file 0.5 0.5 0 @@ -27801,10 +26213,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27885,10 +26293,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -27968,8 +26372,8 @@ Very High + gtk-file 4 - gtk-file 0.5 0.5 0 @@ -27995,10 +26399,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28042,9 +26442,6 @@ Very High False False True - False - False - False @@ -28183,8 +26580,8 @@ Very High + gtk-file 4 - gtk-file 0.5 0.5 0 @@ -28210,10 +26607,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28427,8 +26820,8 @@ Very High + gtk-file 4 - gtk-file 0.5 0.5 0 @@ -28454,10 +26847,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28503,7 +26892,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -28588,10 +26976,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28634,10 +27018,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28663,10 +27043,6 @@ Very High 0 0 attr_value - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -28727,9 +27103,6 @@ Very High True - False - True - True 1 @@ -28755,8 +27128,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -28782,10 +27153,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -28828,9 +27195,6 @@ Very High False False True - False - False - False @@ -28969,8 +27333,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -28996,10 +27358,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29078,10 +27436,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29160,8 +27514,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -29187,10 +27539,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29236,7 +27584,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -29321,10 +27668,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29357,10 +27700,6 @@ Very High 0 0 city - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29389,10 +27728,6 @@ Very High 0 0 county - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29421,10 +27756,6 @@ Very High 0 0 country - PANGO_ELLIPSIZE_NONE - -1 - False - 0 Country: @@ -29454,10 +27785,6 @@ Very High 0 0 state - PANGO_ELLIPSIZE_NONE - -1 - False - 0 State: @@ -29487,10 +27814,6 @@ Very High 0 0 parish - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29625,10 +27948,6 @@ Very High 0 0 phone - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29675,10 +27994,6 @@ Very High 0 0 postal - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29743,7 +28058,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -29829,10 +28143,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -29876,10 +28186,6 @@ Very High 0 0 address_start - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29908,10 +28214,6 @@ Very High 0 0 street - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29940,10 +28242,6 @@ Very High 0 0 city - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -29972,10 +28270,6 @@ Very High 0 0 state - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -30004,10 +28298,6 @@ Very High 0 0 country - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -30036,10 +28326,6 @@ Very High 0 0 postal - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -30195,10 +28481,6 @@ Very High 0 0 phone - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30294,8 +28576,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -30321,10 +28601,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30367,9 +28643,6 @@ Very High False False True - False - False - False @@ -30508,8 +28781,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -30535,10 +28806,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30617,10 +28884,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30700,8 +28963,6 @@ Very High - 4 - gtk-file 0.5 0.5 0 @@ -30727,10 +28988,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30776,7 +29033,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -30862,10 +29118,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -30898,10 +29150,6 @@ Very High 0 0 url_addr - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -30930,10 +29178,6 @@ Very High 0 0 url_des - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31058,7 +29302,6 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True True @@ -31145,10 +29388,6 @@ Very High 0.5 0 10 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -31192,10 +29431,6 @@ Very High 0 0 alt_given - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31224,10 +29459,6 @@ Very High 0 0 alt_suffix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31255,10 +29486,6 @@ Very High 0 1 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31287,10 +29514,6 @@ Very High 0 0 alt_title - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31341,10 +29564,6 @@ Very High 0 0 alt_prefix - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31458,10 +29677,6 @@ Very High 0 0 patronymic - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31489,10 +29704,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31510,9 +29721,6 @@ Very High True - False - True - True 2 @@ -31586,10 +29794,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31617,10 +29821,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -31648,10 +29848,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -31676,10 +29872,6 @@ Very High 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -31694,9 +29886,6 @@ Very High True - False - True - True 2 @@ -31714,8 +29903,6 @@ Very High Default (based on locale) Family name, Given name Given name, Family name - False - True 2 @@ -31734,8 +29921,6 @@ Given name, Family name Given name Family name Family name Given name - False - True 2 @@ -31760,10 +29945,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -31906,8 +30087,6 @@ Family name Given name True - 4 - gtk-file 0.5 0.5 0 @@ -31933,10 +30112,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -31980,9 +30155,6 @@ Family name Given name False False True - False - False - False @@ -32122,8 +30294,6 @@ Family name Given name True - 4 - gtk-file 0.5 0.5 0 @@ -32149,10 +30319,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -32232,10 +30398,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -32316,8 +30478,6 @@ Family name Given name True - 4 - gtk-file 0.5 0.5 0 @@ -32343,10 +30503,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -32392,7 +30548,6 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -32476,10 +30631,6 @@ Family name Given name 0.5 0 6 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -32512,10 +30663,6 @@ Family name Given name 0 0 name - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -32544,10 +30691,6 @@ Family name Given name 0 0 scrolledwindow30 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 @@ -32728,7 +30871,6 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST - True False @@ -32799,10 +30941,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -32902,10 +31040,6 @@ Family name Given name 0.5 6 6 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -32929,10 +31063,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -32967,7 +31097,6 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST - True @@ -32992,10 +31121,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -33020,10 +31145,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -33048,10 +31169,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -33099,7 +31216,6 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -33179,10 +31295,6 @@ Family name Given name 0.5 0 6 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -33217,10 +31329,6 @@ Family name Given name 0 0 calendar_box - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -33233,8 +31341,6 @@ Family name Given name True - False - True 6 @@ -33273,10 +31379,6 @@ Family name Given name 6 0 quality_box - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -33292,8 +31394,6 @@ Family name Given name True - False - True 1 @@ -33321,10 +31421,6 @@ Family name Given name 6 0 type_box - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -33340,8 +31436,6 @@ Family name Given name True - False - True 5 @@ -33368,10 +31462,6 @@ Family name Given name 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -33397,10 +31487,6 @@ Family name Given name 0 0 start_day - PANGO_ELLIPSIZE_NONE - -1 - False - 0 1 @@ -33426,10 +31512,6 @@ Family name Given name 0 0 start_month_box - PANGO_ELLIPSIZE_NONE - -1 - False - 0 2 @@ -33455,10 +31537,6 @@ Family name Given name 0 0 start_year - PANGO_ELLIPSIZE_NONE - -1 - False - 0 3 @@ -33496,8 +31574,6 @@ Family name Given name True - False - True 2 @@ -33544,10 +31620,6 @@ Family name Given name 0.5 6 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 4 @@ -33573,10 +31645,6 @@ Family name Given name 0 0 stop_day - PANGO_ELLIPSIZE_NONE - -1 - False - 0 5 @@ -33602,10 +31670,6 @@ Family name Given name 0 0 stop_month_box - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -33631,10 +31695,6 @@ Family name Given name 0 0 stop_year - PANGO_ELLIPSIZE_NONE - -1 - False - 0 7 @@ -33672,8 +31732,6 @@ Family name Given name True - False - True 6 @@ -33734,10 +31792,6 @@ Family name Given name 0 0 date_text_entry - PANGO_ELLIPSIZE_NONE - -1 - False - 0 6 @@ -33804,7 +31858,6 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST - True False @@ -33872,10 +31925,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0 @@ -33903,10 +31952,6 @@ Family name Given name 0.5 0 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 0