Paragraph editor enhancements - styles have descriptions
svn: r1332
This commit is contained in:
parent
4a3ebaa53e
commit
cea94cbae5
@ -423,7 +423,7 @@ class FamilyView:
|
|||||||
i = 0
|
i = 0
|
||||||
fiter = None
|
fiter = None
|
||||||
child_list = list(family.getChildList())
|
child_list = list(family.getChildList())
|
||||||
child_list.sort(sort.by_birthdate)
|
# child_list.sort(sort.by_birthdate)
|
||||||
|
|
||||||
self.child_map = {}
|
self.child_map = {}
|
||||||
|
|
||||||
@ -573,15 +573,18 @@ class FamilyView:
|
|||||||
exec 'data = %s' % sel_data.data
|
exec 'data = %s' % sel_data.data
|
||||||
exec 'mytype = "%s"' % data[0]
|
exec 'mytype = "%s"' % data[0]
|
||||||
exec 'person = "%s"' % data[1]
|
exec 'person = "%s"' % data[1]
|
||||||
|
|
||||||
if mytype != 'child':
|
if mytype != 'child':
|
||||||
return
|
return
|
||||||
|
|
||||||
s,i = self.child_selection.get_selected()
|
s,i = self.child_selection.get_selected()
|
||||||
if not i:
|
if not i:
|
||||||
return
|
return
|
||||||
|
|
||||||
spath = s.get_path(i)
|
spath = s.get_path(i)
|
||||||
src = spath[0]
|
src = spath[0]
|
||||||
list = self.family.getChildList()
|
list = self.family.getChildList()
|
||||||
|
|
||||||
obj = list[src]
|
obj = list[src]
|
||||||
list.remove(obj)
|
list.remove(obj)
|
||||||
list.insert(row,obj)
|
list.insert(row,obj)
|
||||||
@ -591,7 +594,7 @@ class FamilyView:
|
|||||||
_("Children must be ordered by their birth dates."))
|
_("Children must be ordered by their birth dates."))
|
||||||
return
|
return
|
||||||
self.family.setChildList(list)
|
self.family.setChildList(list)
|
||||||
self.load_family()
|
self.display_marriage(self.family)
|
||||||
Utils.modified()
|
Utils.modified()
|
||||||
|
|
||||||
def drag_data_get(self,widget, context, sel_data, info, time):
|
def drag_data_get(self,widget, context, sel_data, info, time):
|
||||||
@ -601,8 +604,7 @@ class FamilyView:
|
|||||||
id = self.child_model.get_value(iter,2)
|
id = self.child_model.get_value(iter,2)
|
||||||
person = self.parent.db.getPerson(id)
|
person = self.parent.db.getPerson(id)
|
||||||
bits_per = 8; # we're going to pass a string
|
bits_per = 8; # we're going to pass a string
|
||||||
pickled = pickle.dumps(person);
|
data = str(('child',id));
|
||||||
data = str(('child',id,pickled));
|
|
||||||
sel_data.set(sel_data.target, bits_per, data)
|
sel_data.set(sel_data.target, bits_per, data)
|
||||||
|
|
||||||
def drag_begin(self, context, a):
|
def drag_begin(self, context, a):
|
||||||
|
@ -1660,7 +1660,7 @@ class Family(Persistent):
|
|||||||
|
|
||||||
def setChildList(self, list):
|
def setChildList(self, list):
|
||||||
"""sets the list of children"""
|
"""sets the list of children"""
|
||||||
self.Children = list
|
self.Children = list[:]
|
||||||
|
|
||||||
def getMarriage(self):
|
def getMarriage(self):
|
||||||
"""returns the marriage event of the Family. Obsolete"""
|
"""returns the marriage event of the Family. Obsolete"""
|
||||||
|
@ -93,41 +93,27 @@ class Report:
|
|||||||
|
|
||||||
# Ordinal generation names. Used by multiple reports.
|
# Ordinal generation names. Used by multiple reports.
|
||||||
gen = {
|
gen = {
|
||||||
1 : _("First"),
|
1 : _("First"), 2 : _("Second"),
|
||||||
2 : _("Second"),
|
3 : _("Third"), 4 : _("Fourth"),
|
||||||
3 : _("Third"),
|
5 : _("Fifth"), 6 : _("Sixth"),
|
||||||
4 : _("Fourth"),
|
7 : _("Seventh"), 8 : _("Eighth"),
|
||||||
5 : _("Fifth"),
|
9 : _("Ninth"), 10: _("Tenth"),
|
||||||
6 : _("Sixth"),
|
11: _("Eleventh"), 12: _("Twelfth"),
|
||||||
7 : _("Seventh"),
|
13: _("Thirteenth"), 14: _("Fourteenth"),
|
||||||
8 : _("Eighth"),
|
15: _("Fifteenth"), 16: _("Sixteenth"),
|
||||||
9 : _("Ninth"),
|
17: _("Seventeenth"), 18: _("Eighteenth"),
|
||||||
10: _("Tenth"),
|
19: _("Nineteenth"), 20: _("Twentieth"),
|
||||||
11: _("Eleventh"),
|
21: _("Twenty-first"), 22: _("Twenty-second"),
|
||||||
12: _("Twelfth"),
|
23: _("Twenty-third"), 24: _("Twenty-fourth"),
|
||||||
13: _("Thirteenth"),
|
25: _("Twenty-fifth"), 26: _("Twenty-sixth"),
|
||||||
14: _("Fourteenth"),
|
27: _("Twenty-seventh"), 28: _("Twenty-eighth"),
|
||||||
15: _("Fifteenth"),
|
|
||||||
16: _("Sixteenth"),
|
|
||||||
17: _("Seventeenth"),
|
|
||||||
18: _("Eighteenth"),
|
|
||||||
19: _("Nineteenth"),
|
|
||||||
20: _("Twentieth"),
|
|
||||||
21: _("Twenty-first"),
|
|
||||||
22: _("Twenty-second"),
|
|
||||||
23: _("Twenty-third"),
|
|
||||||
24: _("Twenty-fourth"),
|
|
||||||
25: _("Twenty-fifth"),
|
|
||||||
26: _("Twenty-sixth"),
|
|
||||||
27: _("Twenty-seventh"),
|
|
||||||
28: _("Twenty-eighth"),
|
|
||||||
29: _("Twenty-ninth")
|
29: _("Twenty-ninth")
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_progressbar_data(self):
|
def get_progressbar_data(self):
|
||||||
"""The window title for this dialog, and the header line to
|
"""The window title for this dialog, and the header line to
|
||||||
put at the top of the contents of the dialog box."""
|
put at the top of the contents of the dialog box."""
|
||||||
return (_("Progress Report - GRAMPS"), _("Working"))
|
return ("%s - GRAMPS" % _("Progress Report"), _("Working"))
|
||||||
|
|
||||||
def progress_bar_setup(self,total):
|
def progress_bar_setup(self,total):
|
||||||
"""Create a progress dialog. This routine calls a
|
"""Create a progress dialog. This routine calls a
|
||||||
@ -158,7 +144,11 @@ class Report:
|
|||||||
self.pbar_index = self.pbar_index + 1.0
|
self.pbar_index = self.pbar_index + 1.0
|
||||||
if (self.pbar_index > self.pbar_max):
|
if (self.pbar_index > self.pbar_max):
|
||||||
self.pbar_index = self.pbar_max
|
self.pbar_index = self.pbar_max
|
||||||
self.pbar.set_fraction(self.pbar_index/100.0)
|
|
||||||
|
val = self.pbar_index/self.pbar_max
|
||||||
|
|
||||||
|
self.pbar.set_text("%d of %d (%.1f%%)" % (self.pbar_index,self.pbar_max,(val*100)))
|
||||||
|
self.pbar.set_fraction(val)
|
||||||
|
|
||||||
def progress_bar_done(self):
|
def progress_bar_done(self):
|
||||||
"""Done with the progress bar. It can be destroyed now."""
|
"""Done with the progress bar. It can be destroyed now."""
|
||||||
@ -262,7 +252,7 @@ class ReportDialog:
|
|||||||
"""The title of the window that will be created when the user
|
"""The title of the window that will be created when the user
|
||||||
clicks the 'Browse' button in the 'Save As' File Entry
|
clicks the 'Browse' button in the 'Save As' File Entry
|
||||||
widget."""
|
widget."""
|
||||||
return(_("Save Report As - GRAMPS"))
|
return("%s - GRAMPS" % _("Save Report As"))
|
||||||
|
|
||||||
def get_target_is_directory(self):
|
def get_target_is_directory(self):
|
||||||
"""Is the user being asked to input the name of a file or a
|
"""Is the user being asked to input the name of a file or a
|
||||||
|
@ -171,6 +171,8 @@ class StyleEditor:
|
|||||||
})
|
})
|
||||||
|
|
||||||
self.window = self.top.get_widget("editor")
|
self.window = self.top.get_widget("editor")
|
||||||
|
self.pname = self.top.get_widget('pname')
|
||||||
|
self.pdescription = self.top.get_widget('pdescription')
|
||||||
|
|
||||||
Utils.set_titles(self.window, self.top.get_widget('title'),_('Style editor'))
|
Utils.set_titles(self.window, self.top.get_widget('title'),_('Style editor'))
|
||||||
|
|
||||||
@ -184,14 +186,26 @@ class StyleEditor:
|
|||||||
self.top.get_widget('bgcolor').connect('color-set',self.bg_color_set)
|
self.top.get_widget('bgcolor').connect('color-set',self.bg_color_set)
|
||||||
self.top.get_widget("style_name").set_text(name)
|
self.top.get_widget("style_name").set_text(name)
|
||||||
|
|
||||||
for p_name in self.style.get_names():
|
names = self.style.get_names()
|
||||||
|
names.reverse()
|
||||||
|
for p_name in names:
|
||||||
self.plist.add([p_name],self.style.get_style(p_name))
|
self.plist.add([p_name],self.style.get_style(p_name))
|
||||||
self.plist.select_row(0)
|
self.plist.select_row(0)
|
||||||
|
|
||||||
def draw(self,p):
|
def draw(self,name,p):
|
||||||
"""Updates the display with the selected paragraph."""
|
"""Updates the display with the selected paragraph."""
|
||||||
|
|
||||||
self.current_p = p
|
self.current_p = p
|
||||||
|
|
||||||
|
self.pname.set_text('<span size="larger" weight="bold">%s</span>' % name)
|
||||||
|
self.pname.set_use_markup(gtk.TRUE)
|
||||||
|
|
||||||
|
descr = p.get_description()
|
||||||
|
if descr:
|
||||||
|
self.pdescription.set_text(descr)
|
||||||
|
else:
|
||||||
|
self.pdescription.set_text(_("No description available"))
|
||||||
|
|
||||||
font = p.get_font()
|
font = p.get_font()
|
||||||
self.top.get_widget("size").set_value(font.get_size())
|
self.top.get_widget("size").set_value(font.get_size())
|
||||||
if font.get_type_face() == TextDoc.FONT_SANS_SERIF:
|
if font.get_type_face() == TextDoc.FONT_SANS_SERIF:
|
||||||
@ -284,9 +298,11 @@ class StyleEditor:
|
|||||||
old paragraph, then draws the newly selected paragraph"""
|
old paragraph, then draws the newly selected paragraph"""
|
||||||
|
|
||||||
objs = self.plist.get_selected_objects()
|
objs = self.plist.get_selected_objects()
|
||||||
|
store,iter = self.plist.get_selected()
|
||||||
|
name = store.get_value(iter,0)
|
||||||
if self.first == 0:
|
if self.first == 0:
|
||||||
self.save_paragraph(self.current_p)
|
self.save_paragraph(self.current_p)
|
||||||
else:
|
else:
|
||||||
self.first = 0
|
self.first = 0
|
||||||
self.current_p = objs[0]
|
self.current_p = objs[0]
|
||||||
self.draw(self.current_p)
|
self.draw(name,self.current_p)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2000 Donald N. Allingham
|
# Copyright (C) 2000 Donald N. Allingham
|
||||||
@ -472,6 +472,7 @@ class ParagraphStyle:
|
|||||||
self.left_border = source.left_border
|
self.left_border = source.left_border
|
||||||
self.pad = source.pad
|
self.pad = source.pad
|
||||||
self.bgcolor = source.bgcolor
|
self.bgcolor = source.bgcolor
|
||||||
|
self.description = source.description
|
||||||
else:
|
else:
|
||||||
self.font = FontStyle()
|
self.font = FontStyle()
|
||||||
self.rmargin = 0
|
self.rmargin = 0
|
||||||
@ -485,6 +486,13 @@ class ParagraphStyle:
|
|||||||
self.left_border = 0
|
self.left_border = 0
|
||||||
self.pad = 0
|
self.pad = 0
|
||||||
self.bgcolor = (255,255,255)
|
self.bgcolor = (255,255,255)
|
||||||
|
self.description = ""
|
||||||
|
|
||||||
|
def set_description(self,text):
|
||||||
|
self.description = text
|
||||||
|
|
||||||
|
def get_description(self):
|
||||||
|
return self.description
|
||||||
|
|
||||||
def set(self,rmargin=None,lmargin=None,first_indent=None,align=None,
|
def set(self,rmargin=None,lmargin=None,first_indent=None,align=None,
|
||||||
tborder=None,bborder=None,rborder=None,lborder=None,pad=None,
|
tborder=None,bborder=None,rborder=None,lborder=None,pad=None,
|
||||||
|
@ -958,90 +958,108 @@ class WebReportDialog(Report.ReportDialog):
|
|||||||
font.set(bold=1, face=TextDoc.FONT_SANS_SERIF, size=16)
|
font.set(bold=1, face=TextDoc.FONT_SANS_SERIF, size=16)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(align=TextDoc.PARA_ALIGN_CENTER,font=font)
|
p.set(align=TextDoc.PARA_ALIGN_CENTER,font=font)
|
||||||
|
p.set_description(_("The style used for the title of the page."))
|
||||||
|
|
||||||
self.default_style.add_style("Title",p)
|
self.default_style.add_style("Title",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,bborder=1)
|
p.set(font=font,bborder=1)
|
||||||
|
p.set_description(_("The style used for the header that identifies "
|
||||||
|
"facts and events."))
|
||||||
self.default_style.add_style("EventsTitle",p)
|
self.default_style.add_style("EventsTitle",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,bborder=1)
|
p.set(font=font,bborder=1)
|
||||||
|
p.set_description(_("The style used for the header for the notes section."))
|
||||||
self.default_style.add_style("NotesTitle",p)
|
self.default_style.add_style("NotesTitle",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(face=TextDoc.FONT_SANS_SERIF,size=10)
|
font.set(face=TextDoc.FONT_SANS_SERIF,size=10)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,align=TextDoc.PARA_ALIGN_CENTER)
|
p.set(font=font,align=TextDoc.PARA_ALIGN_CENTER)
|
||||||
|
p.set_description(_("The style used for the copyright notice."))
|
||||||
self.default_style.add_style("Copyright",p)
|
self.default_style.add_style("Copyright",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,bborder=1)
|
p.set(font=font,bborder=1)
|
||||||
|
p.set_description(_("The style used for the header for the sources section."))
|
||||||
self.default_style.add_style("SourcesTitle",p)
|
self.default_style.add_style("SourcesTitle",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=14,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=14,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font)
|
p.set(font=font)
|
||||||
|
p.set_description(_("The style used on the index page that labels each section."))
|
||||||
self.default_style.add_style("IndexLabel",p)
|
self.default_style.add_style("IndexLabel",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,bborder=1)
|
p.set(font=font,bborder=1)
|
||||||
|
p.set_description(_("The style used for the header for the image section."))
|
||||||
self.default_style.add_style("GalleryTitle",p)
|
self.default_style.add_style("GalleryTitle",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set(font=font,bborder=1)
|
p.set(font=font,bborder=1)
|
||||||
|
p.set_description(_("The style used for the header for the marriages "
|
||||||
|
"and children section."))
|
||||||
self.default_style.add_style("FamilyTitle",p)
|
self.default_style.add_style("FamilyTitle",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the spouse's name."))
|
||||||
self.default_style.add_style("Spouse",p)
|
self.default_style.add_style("Spouse",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(size=12,italic=1)
|
font.set(size=12,italic=1)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the general data labels."))
|
||||||
self.default_style.add_style("Label",p)
|
self.default_style.add_style("Label",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set_size(12)
|
font.set_size(12)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the general data."))
|
||||||
self.default_style.add_style("Data",p)
|
self.default_style.add_style("Data",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12)
|
font.set(bold=1,face=TextDoc.FONT_SANS_SERIF,size=12)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the description of images."))
|
||||||
self.default_style.add_style("PhotoDescription",p)
|
self.default_style.add_style("PhotoDescription",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set(size=12)
|
font.set(size=12)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the notes associated with images."))
|
||||||
self.default_style.add_style("PhotoNote",p)
|
self.default_style.add_style("PhotoNote",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set_size(10)
|
font.set_size(10)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the source information."))
|
||||||
self.default_style.add_style("SourceParagraph",p)
|
self.default_style.add_style("SourceParagraph",p)
|
||||||
|
|
||||||
font = TextDoc.FontStyle()
|
font = TextDoc.FontStyle()
|
||||||
font.set_size(12)
|
font.set_size(12)
|
||||||
p = TextDoc.ParagraphStyle()
|
p = TextDoc.ParagraphStyle()
|
||||||
p.set_font(font)
|
p.set_font(font)
|
||||||
|
p.set_description(_("The style used for the note information."))
|
||||||
self.default_style.add_style("NotesParagraph",p)
|
self.default_style.add_style("NotesParagraph",p)
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GRAMPS VERSION\n"
|
"Project-Id-Version: GRAMPS VERSION\n"
|
||||||
"POT-Creation-Date: Thu Mar 6 19:16:10 2003\n"
|
"POT-Creation-Date: Fri Mar 7 21:56:51 2003\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -514,11 +514,11 @@ msgstr ""
|
|||||||
msgid "Remove Parents"
|
msgid "Remove Parents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FamilyView.py:590
|
#: FamilyView.py:593
|
||||||
msgid "Attempt to Reorder Children Failed"
|
msgid "Attempt to Reorder Children Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FamilyView.py:591
|
#: FamilyView.py:594
|
||||||
msgid "Children must be ordered by their birth dates."
|
msgid "Children must be ordered by their birth dates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1150,226 +1150,226 @@ msgstr ""
|
|||||||
msgid "First"
|
msgid "First"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:97
|
#: Report.py:96
|
||||||
msgid "Second"
|
msgid "Second"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:98
|
#: Report.py:97
|
||||||
msgid "Third"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:99
|
|
||||||
msgid "Fourth"
|
msgid "Fourth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:100
|
#: Report.py:97
|
||||||
|
msgid "Third"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:98
|
||||||
msgid "Fifth"
|
msgid "Fifth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:101
|
#: Report.py:98
|
||||||
msgid "Sixth"
|
msgid "Sixth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:102
|
#: Report.py:99
|
||||||
msgid "Seventh"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:103
|
|
||||||
msgid "Eighth"
|
msgid "Eighth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:104
|
#: Report.py:99
|
||||||
|
msgid "Seventh"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:100
|
||||||
msgid "Ninth"
|
msgid "Ninth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:105
|
#: Report.py:100
|
||||||
msgid "Tenth"
|
msgid "Tenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:106
|
#: Report.py:101
|
||||||
msgid "Eleventh"
|
msgid "Eleventh"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:107
|
#: Report.py:101
|
||||||
msgid "Twelfth"
|
msgid "Twelfth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:108
|
#: Report.py:102
|
||||||
msgid "Thirteenth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:109
|
|
||||||
msgid "Fourteenth"
|
msgid "Fourteenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:110
|
#: Report.py:102
|
||||||
|
msgid "Thirteenth"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:103
|
||||||
msgid "Fifteenth"
|
msgid "Fifteenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:111
|
#: Report.py:103
|
||||||
msgid "Sixteenth"
|
msgid "Sixteenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:112
|
#: Report.py:104
|
||||||
msgid "Seventeenth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:113
|
|
||||||
msgid "Eighteenth"
|
msgid "Eighteenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:114
|
#: Report.py:104
|
||||||
|
msgid "Seventeenth"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:105
|
||||||
msgid "Nineteenth"
|
msgid "Nineteenth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:115
|
#: Report.py:105
|
||||||
msgid "Twentieth"
|
msgid "Twentieth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:116
|
#: Report.py:106
|
||||||
msgid "Twenty-first"
|
msgid "Twenty-first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:117
|
#: Report.py:106
|
||||||
msgid "Twenty-second"
|
msgid "Twenty-second"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:118
|
#: Report.py:107
|
||||||
msgid "Twenty-third"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:119
|
|
||||||
msgid "Twenty-fourth"
|
msgid "Twenty-fourth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:120
|
#: Report.py:107
|
||||||
|
msgid "Twenty-third"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:108
|
||||||
msgid "Twenty-fifth"
|
msgid "Twenty-fifth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:121
|
#: Report.py:108
|
||||||
msgid "Twenty-sixth"
|
msgid "Twenty-sixth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:122
|
#: Report.py:109
|
||||||
msgid "Twenty-seventh"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: Report.py:123
|
|
||||||
msgid "Twenty-eighth"
|
msgid "Twenty-eighth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:124
|
#: Report.py:109
|
||||||
|
msgid "Twenty-seventh"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Report.py:110
|
||||||
msgid "Twenty-ninth"
|
msgid "Twenty-ninth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:130
|
#: Report.py:116
|
||||||
msgid "Progress Report - GRAMPS"
|
msgid "Progress Report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:130
|
#: Report.py:116
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:265
|
#: Report.py:255
|
||||||
msgid "Save Report As - GRAMPS"
|
msgid "Save Report As"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:490
|
#: Report.py:480
|
||||||
msgid "Document Options"
|
msgid "Document Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:500
|
#: Report.py:490
|
||||||
msgid "Save As"
|
msgid "Save As"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:504
|
#: Report.py:494
|
||||||
msgid "Directory"
|
msgid "Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:506
|
#: Report.py:496
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:526
|
#: Report.py:516
|
||||||
msgid "Output Format"
|
msgid "Output Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:540
|
#: Report.py:530
|
||||||
msgid "Styles"
|
msgid "Styles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:545 StyleEditor.py:80
|
#: Report.py:535 StyleEditor.py:80
|
||||||
msgid "Style Editor"
|
msgid "Style Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:604 Report.py:606
|
#: Report.py:594 Report.py:596
|
||||||
msgid "Paper Options"
|
msgid "Paper Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:615
|
#: Report.py:605
|
||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:620
|
#: Report.py:610
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:628 Report.py:644 styles.glade:829 styles.glade:853
|
#: Report.py:618 Report.py:634 styles.glade:903 styles.glade:927
|
||||||
#: styles.glade:877
|
#: styles.glade:951
|
||||||
msgid "cm"
|
msgid "cm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:632
|
#: Report.py:622
|
||||||
msgid "Orientation"
|
msgid "Orientation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:636
|
#: Report.py:626
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:656
|
#: Report.py:646
|
||||||
msgid "Page Count"
|
msgid "Page Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:680 Report.py:685
|
#: Report.py:670 Report.py:675
|
||||||
msgid "HTML Options"
|
msgid "HTML Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:687 plugins/eventcmp.glade:192
|
#: Report.py:677 plugins/eventcmp.glade:192
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:706
|
#: Report.py:696
|
||||||
msgid "User Template"
|
msgid "User Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:709
|
#: Report.py:699
|
||||||
msgid "Choose File"
|
msgid "Choose File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:748
|
#: Report.py:738
|
||||||
msgid "Report Options"
|
msgid "Report Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:766 gramps.glade:245 gramps.glade:976 plugins/FilterEditor.py:70
|
#: Report.py:756 gramps.glade:245 gramps.glade:976 plugins/FilterEditor.py:70
|
||||||
#: plugins/eventcmp.glade:522 plugins/gedcomexport.glade:157
|
#: plugins/eventcmp.glade:522 plugins/gedcomexport.glade:157
|
||||||
#: plugins/pafexport.glade:127
|
#: plugins/pafexport.glade:127
|
||||||
msgid "Filter"
|
msgid "Filter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:783
|
#: Report.py:773
|
||||||
msgid "Generations"
|
msgid "Generations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:790
|
#: Report.py:780
|
||||||
msgid "Page break between generations"
|
msgid "Page break between generations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:879
|
#: Report.py:869
|
||||||
msgid "Invalid file name"
|
msgid "Invalid file name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Report.py:880
|
#: Report.py:870
|
||||||
msgid ""
|
msgid ""
|
||||||
"The filename that you gave is a directory.\n"
|
"The filename that you gave is a directory.\n"
|
||||||
"You need to provide a valid filename."
|
"You need to provide a valid filename."
|
||||||
@ -1416,14 +1416,18 @@ msgstr ""
|
|||||||
msgid "Error saving stylesheet"
|
msgid "Error saving stylesheet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: StyleEditor.py:175
|
#: StyleEditor.py:177
|
||||||
msgid "Style editor"
|
msgid "Style editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: StyleEditor.py:179
|
#: StyleEditor.py:181
|
||||||
msgid "Paragraph"
|
msgid "Paragraph"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: StyleEditor.py:207
|
||||||
|
msgid "No description available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: Utils.py:176
|
#: Utils.py:176
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3340,7 +3344,7 @@ msgstr ""
|
|||||||
#: plugins/DetDescendantReport.py:850 plugins/FamilyGroup.py:562
|
#: plugins/DetDescendantReport.py:850 plugins/FamilyGroup.py:562
|
||||||
#: plugins/FullFamily.py:171 plugins/GraphViz.py:447
|
#: plugins/FullFamily.py:171 plugins/GraphViz.py:447
|
||||||
#: plugins/IndivComplete.py:663 plugins/IndivSummary.py:496
|
#: plugins/IndivComplete.py:663 plugins/IndivSummary.py:496
|
||||||
#: plugins/Summary.py:146 plugins/TimeLine.py:447 plugins/WebPage.py:1251
|
#: plugins/Summary.py:146 plugins/TimeLine.py:447 plugins/WebPage.py:1269
|
||||||
msgid "Beta"
|
msgid "Beta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4770,11 +4774,11 @@ msgstr ""
|
|||||||
msgid "GRAMPS ID link URL"
|
msgid "GRAMPS ID link URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/WebPage.py:897 plugins/WebPage.py:1249
|
#: plugins/WebPage.py:897 plugins/WebPage.py:1267
|
||||||
msgid "Generate Web Site"
|
msgid "Generate Web Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/WebPage.py:897 plugins/WebPage.py:1250
|
#: plugins/WebPage.py:897 plugins/WebPage.py:1268
|
||||||
msgid "Web Page"
|
msgid "Web Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4790,7 +4794,67 @@ msgstr ""
|
|||||||
msgid "Descendant Families of %s"
|
msgid "Descendant Families of %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/WebPage.py:1252
|
#: plugins/WebPage.py:961
|
||||||
|
msgid "The style used for the title of the page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:969
|
||||||
|
msgid "The style used for the header that identifies facts and events."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:977
|
||||||
|
msgid "The style used for the header for the notes section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:984
|
||||||
|
msgid "The style used for the copyright notice."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:991
|
||||||
|
msgid "The style used for the header for the sources section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:998
|
||||||
|
msgid "The style used on the index page that labels each section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1005
|
||||||
|
msgid "The style used for the header for the image section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1012
|
||||||
|
msgid "The style used for the header for the marriages and children section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1020
|
||||||
|
msgid "The style used for the spouse's name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1027
|
||||||
|
msgid "The style used for the general data labels."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1034
|
||||||
|
msgid "The style used for the general data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1041
|
||||||
|
msgid "The style used for the description of images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1048
|
||||||
|
msgid "The style used for the notes associated with images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1055
|
||||||
|
msgid "The style used for the source information."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1062
|
||||||
|
msgid "The style used for the note information."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plugins/WebPage.py:1270
|
||||||
msgid "Generates web (HTML) pages for individuals, or a set of individuals."
|
msgid "Generates web (HTML) pages for individuals, or a set of individuals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5558,115 +5622,119 @@ msgstr ""
|
|||||||
msgid "Style _name:"
|
msgid "Style _name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:401
|
#: styles.glade:446
|
||||||
|
msgid "<b>Description</b>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: styles.glade:475
|
||||||
msgid "pt"
|
msgid "pt"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:428 styles.glade:730
|
#: styles.glade:502 styles.glade:804
|
||||||
msgid "Pick a color"
|
msgid "Pick a color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:466
|
#: styles.glade:540
|
||||||
msgid "_Bold"
|
msgid "_Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:487
|
#: styles.glade:561
|
||||||
msgid "_Italic"
|
msgid "_Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:508
|
#: styles.glade:582
|
||||||
msgid "_Underline"
|
msgid "_Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:528
|
#: styles.glade:602
|
||||||
msgid "<b>Type face</b>"
|
msgid "<b>Type face</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:552
|
#: styles.glade:626
|
||||||
msgid "<b>Size</b>"
|
msgid "<b>Size</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:576
|
#: styles.glade:650
|
||||||
msgid "<b>Color</b>"
|
msgid "<b>Color</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:600
|
#: styles.glade:674
|
||||||
msgid "<b>Options</b>"
|
msgid "<b>Options</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:650
|
#: styles.glade:724
|
||||||
msgid "_Roman (Times, serif)"
|
msgid "_Roman (Times, serif)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:671
|
#: styles.glade:745
|
||||||
msgid "_Swiss (Arial, Helvetica, sans-serif)"
|
msgid "_Swiss (Arial, Helvetica, sans-serif)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:698
|
#: styles.glade:772
|
||||||
msgid "<b>Font options</b>"
|
msgid "<b>Font options</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:745
|
#: styles.glade:819
|
||||||
msgid "R_ight:"
|
msgid "R_ight:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:773
|
#: styles.glade:847
|
||||||
msgid "L_eft:"
|
msgid "L_eft:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:801
|
#: styles.glade:875
|
||||||
msgid "_Padding:"
|
msgid "_Padding:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:965
|
#: styles.glade:1039
|
||||||
msgid "_Left"
|
msgid "_Left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:986
|
#: styles.glade:1060
|
||||||
msgid "Le_ft"
|
msgid "Le_ft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1007
|
#: styles.glade:1081
|
||||||
msgid "_Right"
|
msgid "_Right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1029
|
#: styles.glade:1103
|
||||||
msgid "_Justify"
|
msgid "_Justify"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1051
|
#: styles.glade:1125
|
||||||
msgid "_Center"
|
msgid "_Center"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1073
|
#: styles.glade:1147
|
||||||
msgid "Ri_ght"
|
msgid "Ri_ght"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1094
|
#: styles.glade:1168
|
||||||
msgid "_Bottom"
|
msgid "_Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1115
|
#: styles.glade:1189
|
||||||
msgid "_Top"
|
msgid "_Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1135
|
#: styles.glade:1209
|
||||||
msgid "<b>Alignment</b>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: styles.glade:1158
|
|
||||||
msgid "<b>Background</b>"
|
msgid "<b>Background</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1182
|
#: styles.glade:1233
|
||||||
msgid "<b>Margins</b>"
|
msgid "<b>Margins</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1206
|
#: styles.glade:1257
|
||||||
msgid "<b>Borders</b>"
|
msgid "<b>Borders</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: styles.glade:1261
|
#: styles.glade:1306
|
||||||
|
msgid "<b>Alignment</b>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: styles.glade:1336
|
||||||
msgid "<b>Paragraph options</b>"
|
msgid "<b>Paragraph options</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@
|
|||||||
|
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkTreeView" id="ptree">
|
<widget class="GtkTreeView" id="ptree">
|
||||||
<property name="width_request">130</property>
|
<property name="width_request">175</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="headers_visible">True</property>
|
<property name="headers_visible">True</property>
|
||||||
@ -385,11 +385,85 @@
|
|||||||
<property name="tab_vborder">2</property>
|
<property name="tab_vborder">2</property>
|
||||||
<property name="enable_popup">False</property>
|
<property name="enable_popup">False</property>
|
||||||
|
|
||||||
|
<child>
|
||||||
|
<widget class="GtkVBox" id="vbox3">
|
||||||
|
<property name="border_width">12</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="homogeneous">False</property>
|
||||||
|
<property name="spacing">12</property>
|
||||||
|
|
||||||
|
<child>
|
||||||
|
<widget class="GtkLabel" id="pname">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label" translatable="yes"></property>
|
||||||
|
<property name="use_underline">False</property>
|
||||||
|
<property name="use_markup">False</property>
|
||||||
|
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||||
|
<property name="wrap">False</property>
|
||||||
|
<property name="selectable">False</property>
|
||||||
|
<property name="xalign">0.5</property>
|
||||||
|
<property name="yalign">0.5</property>
|
||||||
|
<property name="xpad">0</property>
|
||||||
|
<property name="ypad">0</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="padding">0</property>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
|
||||||
|
<child>
|
||||||
|
<widget class="GtkLabel" id="pdescription">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label" translatable="yes"></property>
|
||||||
|
<property name="use_underline">False</property>
|
||||||
|
<property name="use_markup">False</property>
|
||||||
|
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||||
|
<property name="wrap">True</property>
|
||||||
|
<property name="selectable">False</property>
|
||||||
|
<property name="xalign">0.5</property>
|
||||||
|
<property name="yalign">0.5</property>
|
||||||
|
<property name="xpad">0</property>
|
||||||
|
<property name="ypad">0</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="padding">0</property>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="tab_expand">False</property>
|
||||||
|
<property name="tab_fill">True</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
|
||||||
|
<child>
|
||||||
|
<widget class="GtkLabel" id="label25">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label" translatable="yes"><b>Description</b></property>
|
||||||
|
<property name="use_underline">False</property>
|
||||||
|
<property name="use_markup">True</property>
|
||||||
|
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||||
|
<property name="wrap">False</property>
|
||||||
|
<property name="selectable">False</property>
|
||||||
|
<property name="xalign">0.5</property>
|
||||||
|
<property name="yalign">0.5</property>
|
||||||
|
<property name="xpad">0</property>
|
||||||
|
<property name="ypad">0</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="type">tab</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkTable" id="table2">
|
<widget class="GtkTable" id="table2">
|
||||||
<property name="border_width">12</property>
|
<property name="border_width">12</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="n_rows">15</property>
|
<property name="n_rows">14</property>
|
||||||
<property name="n_columns">5</property>
|
<property name="n_columns">5</property>
|
||||||
<property name="homogeneous">False</property>
|
<property name="homogeneous">False</property>
|
||||||
<property name="row_spacing">6</property>
|
<property name="row_spacing">6</property>
|
||||||
@ -1129,29 +1203,6 @@
|
|||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label9">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="label" translatable="yes"><b>Alignment</b></property>
|
|
||||||
<property name="use_underline">False</property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
<property name="justify">GTK_JUSTIFY_CENTER</property>
|
|
||||||
<property name="wrap">False</property>
|
|
||||||
<property name="selectable">False</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="yalign">0</property>
|
|
||||||
<property name="xpad">0</property>
|
|
||||||
<property name="ypad">0</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="left_attach">0</property>
|
|
||||||
<property name="right_attach">6</property>
|
|
||||||
<property name="top_attach">0</property>
|
|
||||||
<property name="bottom_attach">1</property>
|
|
||||||
<property name="x_options">fill</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
|
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkLabel" id="label10">
|
<widget class="GtkLabel" id="label10">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
@ -1248,6 +1299,30 @@
|
|||||||
<property name="y_options"></property>
|
<property name="y_options"></property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
|
||||||
|
<child>
|
||||||
|
<widget class="GtkLabel" id="label9">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label" translatable="yes"><b>Alignment</b></property>
|
||||||
|
<property name="use_underline">False</property>
|
||||||
|
<property name="use_markup">True</property>
|
||||||
|
<property name="justify">GTK_JUSTIFY_CENTER</property>
|
||||||
|
<property name="wrap">False</property>
|
||||||
|
<property name="selectable">False</property>
|
||||||
|
<property name="xalign">0</property>
|
||||||
|
<property name="yalign">0</property>
|
||||||
|
<property name="xpad">0</property>
|
||||||
|
<property name="ypad">0</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="left_attach">0</property>
|
||||||
|
<property name="right_attach">6</property>
|
||||||
|
<property name="top_attach">0</property>
|
||||||
|
<property name="bottom_attach">1</property>
|
||||||
|
<property name="x_options">fill</property>
|
||||||
|
<property name="y_options">fill</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
</widget>
|
</widget>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="tab_expand">False</property>
|
<property name="tab_expand">False</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user