diff --git a/openlp/core/ui/formattingtagform.py b/openlp/core/ui/formattingtagform.py index e580285b9..6b10b4d00 100644 --- a/openlp/core/ui/formattingtagform.py +++ b/openlp/core/ui/formattingtagform.py @@ -123,11 +123,11 @@ class FormattingTagForm(QtGui.QDialog, Ui_FormattingTagDialog): return # Add new tag to list tag = { - u'desc': translate('OpenLP.FormattingTagForm', 'New Tag'), + u'desc': unicode(translate('OpenLP.FormattingTagForm', 'New Tag')), u'start tag': u'{n}', - u'start html': translate('OpenLP.FormattingTagForm', ''), + u'start html': unicode(translate('OpenLP.FormattingTagForm', '')), u'end tag': u'{/n}', - u'end html': translate('OpenLP.FormattingTagForm', ''), + u'end html': unicode(translate('OpenLP.FormattingTagForm', '')), u'protected': False, u'temporary': False }