From e98d2e54e5e9ce765844d673bafe9fea03247fa5 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sat, 23 Jun 2007 02:59:03 +0000 Subject: [PATCH] 0001016: [narrative website] Why is the mime type shown on each image page svn: r8632 --- ChangeLog | 4 ++++ src/plugins/NarrativeWeb.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 55fff4f4c..5a706a1c5 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 0c845c4f4..4a0db693d 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -908,7 +908,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())