diff --git a/po/POTFILES.in b/po/POTFILES.in index 57ca205a5..3adc720f7 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -268,7 +268,7 @@ src/plugins/gramplet/FanChartGramplet.py src/plugins/gramplet/FaqGramplet.py src/plugins/gramplet/GivenNameGramplet.py src/plugins/gramplet/gramplet.gpr.py -src/plugins/gramplet/MediaMetadata.py +src/plugins/gramplet/MetadataViewer.py src/plugins/gramplet/Notes.py src/plugins/gramplet/PedigreeGramplet.py src/plugins/gramplet/PersonDetails.py diff --git a/src/plugins/gramplet/Makefile.am b/src/plugins/gramplet/Makefile.am index c4dbdbec7..ebd01b20d 100644 --- a/src/plugins/gramplet/Makefile.am +++ b/src/plugins/gramplet/Makefile.am @@ -15,7 +15,7 @@ pkgdata_PYTHON = \ Children.py \ DescendGramplet.py \ FanChartGramplet.py \ - FaqGramplet.py \ + FaqGramplet.py \ Filter.py \ Gallery.py \ GivenNameGramplet.py \ @@ -24,7 +24,7 @@ pkgdata_PYTHON = \ Notes.py \ PedigreeGramplet.py \ PersonDetails.py \ - MediaMetadata.py \ + MetadataViewer.py \ PersonResidence.py \ PlaceDetails.py \ PluginManagerGramplet.py\ diff --git a/src/plugins/gramplet/MediaMetadata.py b/src/plugins/gramplet/MetadataViewer.py similarity index 99% rename from src/plugins/gramplet/MediaMetadata.py rename to src/plugins/gramplet/MetadataViewer.py index 5b593fb8f..0ee46b105 100644 --- a/src/plugins/gramplet/MediaMetadata.py +++ b/src/plugins/gramplet/MetadataViewer.py @@ -106,7 +106,7 @@ pyexiv2-0.2.0 or greater, is installed? You may download it from: http://tilloy.net/dev/pyexiv2/ """ -class MediaMetadata(Gramplet): +class MetadataViewer(Gramplet): def init(self): diff --git a/src/plugins/gramplet/bottombar.gpr.py b/src/plugins/gramplet/bottombar.gpr.py index 5a3ef0488..4a0b9b3ab 100644 --- a/src/plugins/gramplet/bottombar.gpr.py +++ b/src/plugins/gramplet/bottombar.gpr.py @@ -78,15 +78,15 @@ register(GRAMPLET, ) register(GRAMPLET, - id="Media Metadata Gramplet", - name=_("Media Metadata Gramplet"), + id="Metadata Viewer Gramplet", + name=_("Metadata Viewer Gramplet"), description = _("Gramplet showing metadata of a media object"), - version="1.0.0", + version="1.0.1", gramps_target_version="3.3", status = STABLE, - fname="MediaMetadata.py", + fname="MetadataViewer.py", height=200, - gramplet = 'MediaMetadata', + gramplet = 'MetadataViewer', gramplet_title=_("Metadata"), ) diff --git a/src/plugins/view/mediaview.py b/src/plugins/view/mediaview.py index e51c4e70f..f38473d50 100644 --- a/src/plugins/view/mediaview.py +++ b/src/plugins/view/mediaview.py @@ -437,7 +437,7 @@ class MediaView(ListView): """ return (("Media Filter Gramplet",), ("Media Preview Gramplet", - "Media Metadata Gramplet", + "Metadata Viewer Gramplet", "Media Sources Gramplet", "Media Notes Gramplet", "Media Attributes Gramplet"))