consistent strings for views

svn: r14255
This commit is contained in:
Benny Malengier 2010-02-06 20:10:25 +00:00
parent c31f720762
commit 2a6befa905
3 changed files with 3 additions and 3 deletions

View File

@ -56,5 +56,5 @@ class PersonListView(BasePersonView):
""" """
def __init__(self, dbstate, uistate, nav_group=0): def __init__(self, dbstate, uistate, nav_group=0):
BasePersonView.__init__(self, dbstate, uistate, BasePersonView.__init__(self, dbstate, uistate,
_('People List'), PersonListModel, _('People'), PersonListModel,
nav_group=nav_group) nav_group=nav_group)

View File

@ -56,7 +56,7 @@ class PersonTreeView(BasePersonView):
""" """
def __init__(self, dbstate, uistate, nav_group=0): def __init__(self, dbstate, uistate, nav_group=0):
BasePersonView.__init__(self, dbstate, uistate, BasePersonView.__init__(self, dbstate, uistate,
_('People'), PersonTreeModel, _('People Tree View'), PersonTreeModel,
nav_group=nav_group) nav_group=nav_group)
def type_list(self): def type_list(self):

View File

@ -54,7 +54,7 @@ class PlaceTreeView(PlaceBaseView):
def __init__(self, dbstate, uistate): def __init__(self, dbstate, uistate):
PlaceBaseView.__init__(self, dbstate, uistate, PlaceBaseView.__init__(self, dbstate, uistate,
_('Tree'), PlaceTreeModel, _('Place Tree View'), PlaceTreeModel,
nav_group=0, markup=True) nav_group=0, markup=True)
def type_list(self): def type_list(self):