From 7edd3be9c3a4ef7f8588185cd5508c7da166c1aa Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sat, 23 Jun 2007 03:02:22 +0000 Subject: [PATCH] 0001016: [narrative website] Why is the mime type shown on each image page svn: r8633 --- ChangeLog | 4 ++++ src/plugins/NarrativeWeb.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8434b7dd3..2b9b80f16 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-06-23 Brian Matherly + * src/plugins/NarrativeWeb.py: 0001016: [narrative website] Why is the mime + type shown on each image page + 2007-06-22 Alex Roitman * src/GrampsDb/_GrampsGEDDB.py (close): Save after batch transactions: #862. diff --git a/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index d5e601707..39922df42 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -911,7 +911,7 @@ class MediaPage(BasePage): of.write('\n') if not note_only: of.write('\n') - of.write('%s\n' % _('MIME type')) + of.write('%s\n' % _('File type')) of.write('%s\n' % photo.mime) of.write('\n') date = _dd.display(photo.get_date_object())