consistent naming and order of views

svn: r14233
This commit is contained in:
Benny Malengier 2010-02-05 20:02:18 +00:00
parent 63652c3239
commit 5b6c641650
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ register(VIEW,
name = _("Place Tree View"), name = _("Place Tree View"),
description = _("A view displaying places in a tree format."), description = _("A view displaying places in a tree format."),
version = '1.0', version = '1.0',
status = UNSTABLE, status = STABLE,
fname = 'placetreeview.py', fname = 'placetreeview.py',
authors = [u"Donald N. Allingham", u"Gary Burton", u"Nick Hall"], authors = [u"Donald N. Allingham", u"Gary Burton", u"Nick Hall"],
authors_email = [""], authors_email = [""],

View File

@ -127,7 +127,7 @@ order = START,
register(VIEW, register(VIEW,
id = 'personview', id = 'personview',
name = _("Person View"), name = _("Person Tree View"),
description = _("The view showing all people in the family tree"), description = _("The view showing all people in the family tree"),
version = '1.0', version = '1.0',
status = STABLE, status = STABLE,
@ -141,7 +141,7 @@ order = START,
register(VIEW, register(VIEW,
id = 'personlistview', id = 'personlistview',
name = _("Person List View"), name = _("Person View"),
description = _("The view showing all people in the family tree" description = _("The view showing all people in the family tree"
" in a flat list"), " in a flat list"),
version = '1.0', version = '1.0',
@ -151,7 +151,7 @@ authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"], authors_email = ["http://gramps-project.org"],
category = ("People", _("People")), category = ("People", _("People")),
viewclass = 'PersonListView', viewclass = 'PersonListView',
order = END, order = START,
) )
register(VIEW, register(VIEW,
id = 'placelistview', id = 'placelistview',