Fix type error for tags

bzr-revno: 2148
This commit is contained in:
Tim Bentley 2013-07-09 20:40:31 +01:00
commit 973ac570b5
1 changed files with 3 additions and 3 deletions

View File

@ -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', '<HTML here>'),
u'start html': unicode(translate('OpenLP.FormattingTagForm', '<HTML here>')),
u'end tag': u'{/n}',
u'end html': translate('OpenLP.FormattingTagForm', '</and here>'),
u'end html': unicode(translate('OpenLP.FormattingTagForm', '</and here>')),
u'protected': False,
u'temporary': False
}