diff --git a/calibre-plugin/fff_plugin.py b/calibre-plugin/fff_plugin.py
index ea07f9b1..c8112d63 100644
--- a/calibre-plugin/fff_plugin.py
+++ b/calibre-plugin/fff_plugin.py
@@ -1695,14 +1695,14 @@ class FanFicFarePlugin(InterfaceAction):
if 'status' in book:
status = book['status']
else:
- status = 'Good'
+ status = _('Good')
htmllog = htmllog + '
| ' + ' | '.join([escapehtml(status),escapehtml(book['title']),escapehtml(", ".join(book['author'])),escapehtml(book['comment']),book['url']]) + ' |
'
for book in bad_list:
if 'status' in book:
status = book['status']
else:
- status = 'Bad'
+ status = _('Bad')
htmllog = htmllog + '| ' + ' | '.join([escapehtml(status),escapehtml(book['title']),escapehtml(", ".join(book['author'])),escapehtml(book['comment']),book['url']]) + ' |
'
htmllog = htmllog + '