2008-01-28 Duncan Lithgow <dlithgow@gmail.com>
* various: add capitalization fixes according to HIG (plus ellipsis ...) http://library.gnome.org/devel/hig-book/stable/design-text-labels.html.en svn: r9951
This commit is contained in:
@@ -531,7 +531,7 @@ register_report(
|
||||
report_class = AncestorChart,
|
||||
options_class = AncestorChartOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Ancestor Graph"),
|
||||
translated_name = _("Ancestor Graph..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -340,7 +340,7 @@ register_report(
|
||||
report_class = AncestorReport,
|
||||
options_class = AncestorOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Ahnentafel Report"),
|
||||
translated_name = _("Ahnentafel Report..."),
|
||||
status=(_("Stable")),
|
||||
description= _("Produces a textual ancestral report"),
|
||||
author_name="Donald N. Allingham",
|
||||
|
||||
@@ -1259,7 +1259,7 @@ register_report(
|
||||
report_class = BookReportSelector,
|
||||
options_class = cl_report,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Book Report"),
|
||||
translated_name = _("Book Report..."),
|
||||
status = _("Stable"),
|
||||
description = _("Creates a book containing several reports."),
|
||||
author_name = "Alex Roitman",
|
||||
|
||||
@@ -488,7 +488,7 @@ register_tool(
|
||||
tool_class = CalcToolManagedWindow,
|
||||
options_class = CalcEstDateOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Calculate Estimated Dates"),
|
||||
translated_name = _("Calculate Estimated Dates..."),
|
||||
status = _("Beta"),
|
||||
author_name = "Douglas S. Blank",
|
||||
author_email = "dblank@cs.brynmawr.edu",
|
||||
|
||||
@@ -69,7 +69,7 @@ class ChangeNames(Tool.BatchTool, ManagedWindow.ManagedWindow):
|
||||
if self.fail:
|
||||
return
|
||||
|
||||
self.progress = Utils.ProgressMeter(_('Checking family names'),'')
|
||||
self.progress = Utils.ProgressMeter(_('Checking Family Names'),'')
|
||||
self.progress.set_pass(_('Searching family names'),
|
||||
len(self.db.get_surname_list()))
|
||||
self.name_list = []
|
||||
@@ -198,7 +198,7 @@ register_tool(
|
||||
tool_class = ChangeNames,
|
||||
options_class = ChangeNamesOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Fix capitalization of family names"),
|
||||
translated_name = _("Fix Capitalization of Family Names..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -121,7 +121,7 @@ class ChangeTypes(Tool.BatchTool, ManagedWindow.ManagedWindow):
|
||||
self.trans = self.db.transaction_begin("",batch=True)
|
||||
self.db.disable_signals()
|
||||
if not cli:
|
||||
progress = Utils.ProgressMeter(_('Analyzing events'),'')
|
||||
progress = Utils.ProgressMeter(_('Analyzing Events'),'')
|
||||
progress.set_pass('',self.db.get_number_of_events())
|
||||
|
||||
for event_handle in self.db.get_event_handles():
|
||||
@@ -203,7 +203,7 @@ register_tool(
|
||||
tool_class = ChangeTypes,
|
||||
options_class = ChangeTypesOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Rename event types"),
|
||||
translated_name = _("Rename Event Types..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -236,7 +236,7 @@ class CheckIntegrity:
|
||||
'repos' : [],
|
||||
'notes' : [],
|
||||
}
|
||||
self.progress = Utils.ProgressMeter(_('Checking database'),'')
|
||||
self.progress = Utils.ProgressMeter(_('Checking Database'),'')
|
||||
|
||||
def family_errors(self):
|
||||
return len(self.broken_parent_links) + \
|
||||
@@ -1512,7 +1512,7 @@ register_tool(
|
||||
tool_class = Check,
|
||||
options_class = CheckOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Check and repair database"),
|
||||
translated_name = _("Check and Repair Database"),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -435,7 +435,7 @@ register_tool(
|
||||
tool_class = Checkpoint,
|
||||
options_class = CheckpointOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Checkpoint the database"),
|
||||
translated_name = _("Checkpoint the Database..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Alex Roitman",
|
||||
author_email = "shura@gramps-project.org",
|
||||
|
||||
@@ -138,7 +138,7 @@ register_report(
|
||||
report_class = CountAncestors,
|
||||
options_class = None,
|
||||
modes = MODE_GUI,
|
||||
translated_name = _("Number of ancestors"),
|
||||
translated_name = _("Number of Ancestors"),
|
||||
status = _("Stable"),
|
||||
description= _("Counts number of ancestors of selected person")
|
||||
)
|
||||
|
||||
@@ -62,7 +62,7 @@ class DateParserDisplayTest(Tool.Tool):
|
||||
|
||||
|
||||
def run_tool(self):
|
||||
self.progress = Utils.ProgressMeter(_('Running date test'),'')
|
||||
self.progress = Utils.ProgressMeter(_('Running Date Test'),'')
|
||||
self.progress.set_pass(_('Generating dates'),
|
||||
4)
|
||||
dates = []
|
||||
@@ -229,7 +229,7 @@ register_tool(
|
||||
tool_class = DateParserDisplayTest,
|
||||
options_class = Tool.ToolOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Check localized date displayer and parser"),
|
||||
translated_name = _("Check Localized Date Displayer and Parser..."),
|
||||
status = _("Beta"),
|
||||
author_name = "Martin Hawlisch",
|
||||
author_email = "martin@hawlisch.de",
|
||||
|
||||
@@ -157,7 +157,7 @@ register_tool(
|
||||
tool_class = DesBrowse,
|
||||
options_class = DesBrowseOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Interactive descendant browser"),
|
||||
translated_name = _("Interactive Descendant Browser"),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -485,7 +485,7 @@ register_report(
|
||||
report_class = DescendChart,
|
||||
options_class = DescendChartOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Descendant Chart"),
|
||||
translated_name = _("Descendant Chart..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -251,7 +251,7 @@ register_report(
|
||||
report_class = DescendantReport,
|
||||
options_class = DescendantOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Descendant Report"),
|
||||
translated_name = _("Descendant Report..."),
|
||||
status=(_("Stable")),
|
||||
description=_("Generates a list of descendants of the active person"),
|
||||
author_name="Donald N. Allingham",
|
||||
|
||||
@@ -862,7 +862,7 @@ register_report(
|
||||
report_class = DetAncestorReport,
|
||||
options_class = DetAncestorOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Detailed Ancestral Report"),
|
||||
translated_name = _("Detailed Ancestral Report..."),
|
||||
status=(_("Beta")),
|
||||
description= _("Produces a detailed ancestral report"),
|
||||
author_name="Bruce DeGrasse",
|
||||
|
||||
@@ -827,7 +827,7 @@ register_report(
|
||||
report_class = DetDescendantReport,
|
||||
options_class = DetDescendantOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Detailed Descendant Report"),
|
||||
translated_name = _("Detailed Descendant Report..."),
|
||||
status=(_("Beta")),
|
||||
description= _("Produces a detailed descendant report"),
|
||||
author_name="Bruce DeGrasse",
|
||||
|
||||
@@ -111,7 +111,7 @@ if __debug__:
|
||||
tool_class = DumpGenderStats,
|
||||
options_class = DumpGenderStatsOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Dumps gender statistics"),
|
||||
translated_name = _("Dump Gender Statistics"),
|
||||
description = _("Will dump the statistics for the gender guessing "
|
||||
"from the first name.")
|
||||
)
|
||||
|
||||
@@ -313,7 +313,7 @@ register_report(
|
||||
report_class = EndOfLineReport,
|
||||
options_class = EndOfLineOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("End of Line Report"),
|
||||
translated_name = _("End of Line Report..."),
|
||||
status=(_("Stable")),
|
||||
description= _("Produces a textual end of line report"),
|
||||
author_name="Brian G. Matherly",
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ if __debug__:
|
||||
tool_class = Eval,
|
||||
options_class = EvalOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Python evaluation window"),
|
||||
translated_name = _("Python Evaluation Window..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -282,7 +282,7 @@ class DisplayChart(ManagedWindow.ManagedWindow):
|
||||
self.progress_bar.close()
|
||||
|
||||
def build_row_data(self):
|
||||
self.progress_bar = Utils.ProgressMeter(_('Comparing events'),'')
|
||||
self.progress_bar = Utils.ProgressMeter(_('Comparing Events'),'')
|
||||
self.progress_bar.set_pass(_('Building data'),len(self.my_list))
|
||||
for individual_id in self.my_list:
|
||||
individual = self.db.get_person_from_handle(individual_id)
|
||||
@@ -451,7 +451,7 @@ register_tool(
|
||||
tool_class = EventComparison,
|
||||
options_class = EventComparisonOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Compare individual events"),
|
||||
translated_name = _("Compare Individual Events..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -159,7 +159,7 @@ register_tool(
|
||||
tool_class = EventNames,
|
||||
options_class = EventNamesOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Extract event descriptions from event data"),
|
||||
translated_name = _("Extract Event Descriptions from Event Data"),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -383,7 +383,7 @@ class ExtractCity(Tool.BatchTool, ManagedWindow.ManagedWindow):
|
||||
Performs the actual extraction of information
|
||||
"""
|
||||
|
||||
self.progress = Utils.ProgressMeter(_('Checking place titles'), '')
|
||||
self.progress = Utils.ProgressMeter(_('Checking Place Titles'), '')
|
||||
self.progress.set_pass(_('Looking for place fields'),
|
||||
len(self.db.get_place_handles()))
|
||||
|
||||
@@ -585,7 +585,7 @@ register_tool(
|
||||
tool_class = ExtractCity,
|
||||
options_class = ExtractCityOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Extract place data from a place title"),
|
||||
translated_name = _("Extract Place Data from a Place Title..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -765,7 +765,7 @@ register_report(
|
||||
report_class = FamilyGroup,
|
||||
options_class = FamilyGroupOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Family Group Report"),
|
||||
translated_name = _("Family Group Report..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -736,7 +736,7 @@ class FamilyLinesReport(Report):
|
||||
ErrorDialog(_("Could not create %s") % self.filename)
|
||||
return
|
||||
|
||||
self.progress = Utils.ProgressMeter(_('Generate family lines'),_('Starting'))
|
||||
self.progress = Utils.ProgressMeter(_('Generate Family Lines'),_('Starting'))
|
||||
|
||||
# starting with the people of interest, we then add parents and children:
|
||||
self.peopleToOutput.clear()
|
||||
@@ -1221,7 +1221,7 @@ class LastNameDialog(ManagedWindow.ManagedWindow):
|
||||
# (this can be a lengthy process, so by passing in the dictionary we can
|
||||
# be certain we only do this once)
|
||||
progress = Utils.ProgressMeter(_('Family Lines'))
|
||||
progress.set_pass(_('Finding surnames'), database.get_number_of_people())
|
||||
progress.set_pass(_('Finding Surnames'), database.get_number_of_people())
|
||||
for personHandle in database.get_person_handles(False):
|
||||
progress.step()
|
||||
person = database.get_person_from_handle(personHandle)
|
||||
@@ -1440,7 +1440,7 @@ register_report(
|
||||
author_email = "stephanecharette@gmail.com",
|
||||
report_class = FamilyLinesDialog, # class which will create everything needed for the report
|
||||
options_class = None,
|
||||
translated_name = _("Family Lines Graph"),
|
||||
translated_name = _("Family Lines Graph..."),
|
||||
unsupported = True
|
||||
)
|
||||
|
||||
|
||||
@@ -428,7 +428,7 @@ register_report(
|
||||
report_class = FanChart,
|
||||
options_class = FanChartOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Fan Chart"),
|
||||
translated_name = _("Fan Chart..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -128,7 +128,7 @@ class Merge(Tool.Tool,ManagedWindow.ManagedWindow):
|
||||
|
||||
window = top.get_widget('dialog')
|
||||
self.set_window(window, top.get_widget('title'),
|
||||
_('Find possible duplicate people'))
|
||||
_('Find Possible Duplicate People'))
|
||||
|
||||
top.signal_autoconnect({
|
||||
"on_merge_ok_clicked" : self.on_merge_ok_clicked,
|
||||
@@ -185,7 +185,7 @@ class Merge(Tool.Tool,ManagedWindow.ManagedWindow):
|
||||
pass
|
||||
|
||||
def find_potentials(self,thresh):
|
||||
self.progress = Utils.ProgressMeter(_('Find duplicates'),
|
||||
self.progress = Utils.ProgressMeter(_('Find Duplicates'),
|
||||
_('Looking for duplicate people'))
|
||||
|
||||
index = 0
|
||||
@@ -693,7 +693,7 @@ register_tool(
|
||||
tool_class = Merge,
|
||||
options_class = MergeOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Find possible duplicate people"),
|
||||
translated_name = _("Find Possible Duplicate People..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -298,7 +298,7 @@ class FamilyLinesReport(Report):
|
||||
# this is where we'll do all of the work of figuring out who
|
||||
# from the database is going to be output into the report
|
||||
|
||||
self.progress = Utils.ProgressMeter(_('Generate family lines'),_('Starting'))
|
||||
self.progress = Utils.ProgressMeter(_('Generating Family Lines'),_('Starting'))
|
||||
|
||||
# starting with the people of interest, we then add parents:
|
||||
self.peopleToOutput.clear()
|
||||
@@ -881,7 +881,7 @@ class FamilyLinesReport(Report):
|
||||
#------------------------------------------------------------------------
|
||||
register_report(
|
||||
name = 'familylines_graph',
|
||||
translated_name = _("Family Lines Graph"),
|
||||
translated_name = _("Family Lines Graph..."),
|
||||
category = CATEGORY_GRAPHVIZ,
|
||||
report_class = FamilyLinesReport, # must implement write_report(), called by report() in _ReportDialog.py
|
||||
options_class = FamilyLinesOptions, # must implement add_menu_options(), called by MenuOptions::__init__()
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
"""
|
||||
Generate an hourglass graph using the GraphViz generator.
|
||||
/Reports/GraphViz/Hourglass Graph...
|
||||
"""
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
@@ -198,7 +199,7 @@ register_report(
|
||||
report_class = HourGlassReport,
|
||||
options_class = HourGlassOptions,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Hourglass Graph"),
|
||||
translated_name = _("Hourglass Graph..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Brian G. Matherly",
|
||||
author_email = "brian@gramps-project.org",
|
||||
|
||||
@@ -555,7 +555,7 @@ register_report(
|
||||
report_class = RelGraphReport,
|
||||
options_class = RelGraphOptions,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Relationship Graph"),
|
||||
translated_name = _("Relationship Graph..."),
|
||||
status = _("Stable"),
|
||||
description = _("Generates a relationship graphs using Graphviz."),
|
||||
author_name ="Brian G. Matherly",
|
||||
|
||||
@@ -1324,7 +1324,7 @@ register_report(
|
||||
report_class = GraphVizDialog,
|
||||
options_class = cl_report,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Relationship Graph (code)"),
|
||||
translated_name = _("Relationship Graph (code)..."),
|
||||
status = _("Stable"),
|
||||
description= get_description(),
|
||||
author_name="Donald N. Allingham",
|
||||
@@ -1339,7 +1339,7 @@ if _dot_found:
|
||||
report_class = GraphVizGraphics,
|
||||
options_class = GraphVizOptions,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Relationship Graph"),
|
||||
translated_name = _("Relationship Graph..."),
|
||||
status = _("Stable"),
|
||||
description= get_description_graphics(),
|
||||
author_name="Donald N. Allingham",
|
||||
|
||||
@@ -638,7 +638,7 @@ register_report(
|
||||
report_class = IndivCompleteReport,
|
||||
options_class = IndivCompleteOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Complete Individual Report"),
|
||||
translated_name = _("Complete Individual Report..."),
|
||||
status=(_("Stable")),
|
||||
author_name="Donald N. Allingham",
|
||||
author_email="don@gramps-project.org",
|
||||
|
||||
@@ -401,7 +401,7 @@ register_report(
|
||||
report_class = KinshipReport,
|
||||
options_class = KinshipOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Kinship Report"),
|
||||
translated_name = _("Kinship Report..."),
|
||||
status=(_("Stable")),
|
||||
description= _("Produces a textual report of kinship for a given person"),
|
||||
author_name="Brian G. Matherly",
|
||||
|
||||
+1
-1
@@ -127,7 +127,7 @@ if __debug__:
|
||||
tool_class = Leak,
|
||||
options_class = LeakOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Show uncollected objects"),
|
||||
translated_name = _("Show Uncollected Objects"),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -521,7 +521,7 @@ register_report(
|
||||
report_class = MarkerReport,
|
||||
options_class = MarkerOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Marker Report"),
|
||||
translated_name = _("Marker Report..."),
|
||||
status=(_("Stable")),
|
||||
description=_("Generates a list of people with a specified marker"),
|
||||
author_name="Brian G. Matherly",
|
||||
|
||||
@@ -612,7 +612,7 @@ register_tool(
|
||||
tool_class = MediaMan,
|
||||
options_class = MediaManOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Media manager"),
|
||||
translated_name = _("Media Manager..."),
|
||||
status=(_("Beta")),
|
||||
author_name = "Alex Roitman",
|
||||
author_email = "shura@gramps-project.org",
|
||||
|
||||
@@ -2467,7 +2467,7 @@ class WebReport(Report):
|
||||
value)
|
||||
return
|
||||
|
||||
self.progress = Utils.ProgressMeter(_("Generate HTML reports"),'')
|
||||
self.progress = Utils.ProgressMeter(_("Generate HTML Reports"),'')
|
||||
|
||||
# Build the person list
|
||||
ind_list = self.build_person_list()
|
||||
@@ -3283,7 +3283,7 @@ register_report(
|
||||
report_class = WebReportDialog,
|
||||
options_class = cl_report,
|
||||
modes = MODE_GUI | MODE_CLI,
|
||||
translated_name = _("Narrated Web Site"),
|
||||
translated_name = _("Narrated Web Site..."),
|
||||
status = _("Stable"),
|
||||
author_name="Donald N. Allingham",
|
||||
author_email="don@gramps-project.org",
|
||||
|
||||
@@ -95,7 +95,7 @@ class OwnerEditor(Tool.Tool, ManagedWindow.ManagedWindow):
|
||||
window = top_xml.get_widget("top")
|
||||
self.set_window(window,
|
||||
top_xml.get_widget("title"),
|
||||
_("Database owner editor"))
|
||||
_("Database Owner Editor"))
|
||||
|
||||
# move help button to the left side
|
||||
action_area = top_xml.get_widget("action_area")
|
||||
@@ -187,7 +187,8 @@ register_tool(
|
||||
tool_class = OwnerEditor,
|
||||
options_class = OwnerEditorOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Edit database owner information"),
|
||||
# translated_name = _("Database Owner Information"),
|
||||
translated_name = _("Edit Database Owner Information"),
|
||||
status = _("Beta"),
|
||||
author_name = "Zsolt Foldvari",
|
||||
author_email = "zfoldvar@users.sourceforge.net",
|
||||
|
||||
@@ -104,7 +104,7 @@ class PatchNames(Tool.BatchTool, ManagedWindow.ManagedWindow):
|
||||
self.prefix2_list = []
|
||||
|
||||
self.progress = Utils.ProgressMeter(
|
||||
_('Extracting information from names'),'')
|
||||
_('Extracting Information from Names'),'')
|
||||
self.progress.set_pass(_('Analyzing names'),
|
||||
self.db.get_number_of_people())
|
||||
|
||||
@@ -356,7 +356,7 @@ register_tool(
|
||||
tool_class = PatchNames,
|
||||
options_class = PatchNamesOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Extract information from names"),
|
||||
translated_name = _("Extract Information from Names..."),
|
||||
status=(_("Stable")),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -121,7 +121,7 @@ register_tool(
|
||||
tool_class = Rebuild,
|
||||
options_class = RebuildOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Rebuild secondary indices"),
|
||||
translated_name = _("Rebuild Secondary Indices"),
|
||||
status=(_("Stable")),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -122,7 +122,7 @@ register_tool(
|
||||
tool_class = RebuildRefMap,
|
||||
options_class = RebuildRefMapOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Rebuild reference maps"),
|
||||
translated_name = _("Rebuild Reference Maps"),
|
||||
status=(_("Stable")),
|
||||
author_name = "Alex Roitman",
|
||||
author_email = "shura@gramps-project.org",
|
||||
|
||||
@@ -250,7 +250,7 @@ register_tool(
|
||||
tool_class = RelCalc,
|
||||
options_class = RelCalcOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Relationship calculator"),
|
||||
translated_name = _("Relationship Calculator..."),
|
||||
status=(_("Stable")),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -406,7 +406,7 @@ register_tool(
|
||||
tool_class = RemoveUnused,
|
||||
options_class = CheckOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Remove unused objects"),
|
||||
translated_name = _("Remove Unused Objects..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -141,7 +141,7 @@ register_tool(
|
||||
tool_class = SoundGen,
|
||||
options_class = SoundGenOptions,
|
||||
modes = Tool.MODE_GUI,
|
||||
translated_name = _("Generate SoundEx codes"),
|
||||
translated_name = _("Generate SoundEx Codes..."),
|
||||
status=(_("Stable")),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -890,7 +890,7 @@ register_report(
|
||||
report_class = StatisticsChart,
|
||||
options_class = StatisticsChartOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Statistics Chart"),
|
||||
translated_name = _("Statistics Chart..."),
|
||||
status = (_("Stable")),
|
||||
author_name="Eero Tamminen",
|
||||
author_email="",
|
||||
|
||||
@@ -180,7 +180,7 @@ register_report(
|
||||
report_class = SummaryReport,
|
||||
options_class = None,
|
||||
modes = MODE_GUI,
|
||||
translated_name = _("Summary of the database"),
|
||||
translated_name = _("Summary of the Database"),
|
||||
status = _("Beta"),
|
||||
description= _("Provides a summary of the current database"),
|
||||
require_active=False,
|
||||
|
||||
@@ -1401,7 +1401,7 @@ if __debug__:
|
||||
tool_class = TestcaseGenerator,
|
||||
options_class = TestcaseGeneratorOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Generate Testcases for persons and families"),
|
||||
translated_name = _("Generate Testcases for Persons and Families..."),
|
||||
status = _("Beta"),
|
||||
author_name = "Martin Hawlisch",
|
||||
author_email = "martin@hawlisch.de",
|
||||
|
||||
@@ -444,7 +444,7 @@ register_report(
|
||||
report_class = TimeLine,
|
||||
options_class = TimeLineOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("Timeline Graph"),
|
||||
translated_name = _("Timeline Graph..."),
|
||||
status = _("Stable"),
|
||||
author_name = "Donald N. Allingham",
|
||||
author_email = "don@gramps-project.org",
|
||||
|
||||
@@ -1501,6 +1501,6 @@ register_tool(
|
||||
tool_class = Verify,
|
||||
options_class = VerifyOptions,
|
||||
modes = Tool.MODE_GUI | Tool.MODE_CLI,
|
||||
translated_name = _("Verify the data"),
|
||||
translated_name = _("Verify the Data..."),
|
||||
description = _("Verifies the data against user-defined tests")
|
||||
)
|
||||
|
||||
@@ -474,7 +474,7 @@ class WebReport(Report):
|
||||
|
||||
# initialize the dict to fill:
|
||||
self.calendar = {}
|
||||
self.progress = Utils.ProgressMeter(_("Generate HTML calendars"),'')
|
||||
self.progress = Utils.ProgressMeter(_("Generate HTML Calendars"),'')
|
||||
|
||||
# Generate the CSS file
|
||||
self.write_css()
|
||||
@@ -1415,7 +1415,7 @@ register_report(
|
||||
report_class = WebReportDialog,
|
||||
options_class = WebReportOptions,
|
||||
modes = MODE_GUI,
|
||||
translated_name = _("Web Calendar"),
|
||||
translated_name = _("Web Calendar..."),
|
||||
status = _("Beta"),
|
||||
author_name="Thom Sturgill",
|
||||
author_email="thsturgill@yahoo.com",
|
||||
|
||||
Reference in New Issue
Block a user