diff --git a/gramps/gen/config.py b/gramps/gen/config.py index 3373c1fc0..3a7cfac91 100644 --- a/gramps/gen/config.py +++ b/gramps/gen/config.py @@ -188,7 +188,7 @@ register('interface.clipboard-height', 300) register('interface.clipboard-width', 300) register('interface.dont-ask', False) register('interface.view-categories', - ["Gramplets", "People", "Relationships", "Families", + ["Dashboard", "People", "Relationships", "Families", "Ancestry", "Events", "Places", "Geography", "Sources", "Citations", "Repositories", "Media", "Notes"]) register('interface.edit-filter-width', 500) diff --git a/gramps/plugins/view/grampletview.py b/gramps/plugins/view/dashboardview.py similarity index 92% rename from gramps/plugins/view/grampletview.py rename to gramps/plugins/view/dashboardview.py index 3de9344c5..1c9e23896 100644 --- a/gramps/plugins/view/grampletview.py +++ b/gramps/plugins/view/dashboardview.py @@ -21,7 +21,7 @@ # $Id$ """ -GrampletView interface. +DashboardView interface. """ #------------------------------------------------------------------------- @@ -40,16 +40,16 @@ from gramps.gui.views.pageview import PageView from gramps.gen.ggettext import gettext as _ from gramps.gui.widgets.grampletpane import GrampletPane -class GrampletView(PageView): +class DashboardView(PageView): """ - GrampletView interface + DashboardView interface """ def __init__(self, pdata, dbstate, uistate): """ - Create a GrampletView, with the current dbstate and uistate + Create a DashboardView, with the current dbstate and uistate """ - PageView.__init__(self, _('Gramplets'), pdata, dbstate, uistate) + PageView.__init__(self, _('Dashboard'), pdata, dbstate, uistate) self.ui_def = ''' @@ -72,7 +72,7 @@ class GrampletView(PageView): the base class. Returns a gtk container widget. """ # load the user's gramplets and set columns, etc - self.widget = GrampletPane("Gramplets_grampletview_gramplets", self, + self.widget = GrampletPane("Gramplets_dashboardview_gramplets", self, self.dbstate, self.uistate) return self.widget diff --git a/gramps/plugins/view/view.gpr.py b/gramps/plugins/view/view.gpr.py index 4dda68d79..06b680bae 100644 --- a/gramps/plugins/view/view.gpr.py +++ b/gramps/plugins/view/view.gpr.py @@ -61,17 +61,17 @@ order = START, ) register(VIEW, -id = 'grampletview', -name = _("Gramplets"), +id = 'dashboardview', +name = _("Dashboard"), description = _("The view showing Gramplets"), version = '1.0', gramps_target_version = '4.0', status = STABLE, -fname = 'grampletview.py', +fname = 'dashboardview.py', authors = ["The Gramps project"], authors_email = ["http://gramps-project.org"], -category = ("Gramplets", _("Gramplets")), -viewclass = 'GrampletView', +category = ("Dashboard", _("Dashboard")), +viewclass = 'DashboardView', order = START, )