4896: Remove the word "Gramplet" from gramplet names

svn: r17447
This commit is contained in:
Nick Hall
2011-05-07 18:42:31 +00:00
parent 5705d45122
commit ba8d8b582c
14 changed files with 182 additions and 182 deletions

View File

@@ -289,9 +289,9 @@ class EventView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Event Filter Gramplet",),
("Event Gallery Gramplet",
"Event Sources Gramplet",
"Event Notes Gramplet",
"Event Attributes Gramplet",
"Event Backlinks Gramplet"))
return (("Event Filter",),
("Event Gallery",
"Event Sources",
"Event Notes",
"Event Attributes",
"Event Backlinks"))

View File

@@ -344,11 +344,11 @@ class FamilyView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Family Filter Gramplet",),
("Family Gallery Gramplet",
"Family Events Gramplet",
"Family Children Gramplet",
"Family Sources Gramplet",
"Family Notes Gramplet",
"Family Attributes Gramplet",
"Family Backlinks Gramplet"))
return (("Family Filter",),
("Family Gallery",
"Family Events",
"Family Children",
"Family Sources",
"Family Notes",
"Family Attributes",
"Family Backlinks"))

View File

@@ -384,5 +384,5 @@ class GeoEvents(GeoGraphyView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Event Filter Gramplet",),
return (("Event Filter",),
())

View File

@@ -424,5 +424,5 @@ class GeoFamily(GeoGraphyView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Family Filter Gramplet",),
return (("Family Filter",),
())

View File

@@ -489,7 +489,7 @@ class GeoPerson(GeoGraphyView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Person Filter Gramplet",),
return (("Person Filter",),
())
def specific_options(self, configdialog):

View File

@@ -328,5 +328,5 @@ class GeoPlaces(GeoGraphyView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Place Filter Gramplet",),
return (("Place Filter",),
())

View File

@@ -423,10 +423,10 @@ class MediaView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Media Filter Gramplet",),
("Media Preview Gramplet",
"Media Sources Gramplet",
"Media Notes Gramplet",
"Media Attributes Gramplet",
"Metadata Viewer Gramplet",
"Media Backlinks Gramplet"))
return (("Media Filter",),
("Media Preview",
"Media Sources",
"Media Notes",
"Media Attributes",
"Metadata Viewer",
"Media Backlinks"))

View File

@@ -299,5 +299,5 @@ class NoteView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Note Filter Gramplet",),
("Note Backlinks Gramplet",))
return (("Note Filter",),
("Note Backlinks",))

View File

@@ -274,7 +274,7 @@ class RepositoryView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Repository Filter Gramplet",),
("Repository Details Gramplet",
"Repository Notes Gramplet",
"Repository Backlinks Gramplet"))
return (("Repository Filter",),
("Repository Details",
"Repository Notes",
"Repository Backlinks"))

View File

@@ -251,7 +251,7 @@ class SourceView(ListView):
"""
Define the default gramplets for the sidebar and bottombar.
"""
return (("Source Filter Gramplet",),
("Source Gallery Gramplet",
"Source Notes Gramplet",
"Source Backlinks Gramplet"))
return (("Source Filter",),
("Source Gallery",
"Source Notes",
"Source Backlinks"))