diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 4ed411ec1..13c344367 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -207,6 +207,7 @@ class OpenLP(QtGui.QApplication): else: return QtGui.QApplication.event(self, event) + def set_up_logging(log_path): """ Setup our logging using log_path @@ -217,6 +218,9 @@ def set_up_logging(log_path): logfile.setFormatter(logging.Formatter( u'%(asctime)s %(name)-55s %(levelname)-8s %(message)s')) log.addHandler(logfile) + if log.isEnabledFor(logging.DEBUG): + print 'Logging to:', filename + def main(args=None): """ @@ -247,7 +251,6 @@ def main(args=None): qt_args = [] if options.loglevel.lower() in ['d', 'debug']: log.setLevel(logging.DEBUG) - print 'Logging to:', filename elif options.loglevel.lower() in ['w', 'warning']: log.setLevel(logging.WARNING) else: diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index e80ed45d1..1eb03e13c 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -130,15 +130,15 @@ class Ui_FormattingTagDialog(object): translate('OpenLP.FormattingTagDialog', 'Description')) self.tagLabel.setText(translate('OpenLP.FormattingTagDialog', 'Tag')) self.startTagLabel.setText( - translate('OpenLP.FormattingTagDialog', 'Start tag')) + translate('OpenLP.FormattingTagDialog', 'Start HTML')) self.endTagLabel.setText( - translate('OpenLP.FormattingTagDialog', 'End tag')) + translate('OpenLP.FormattingTagDialog', 'End HTML')) self.deletePushButton.setText(UiStrings().Delete) self.newPushButton.setText(UiStrings().New) self.tagTableWidget.horizontalHeaderItem(0).setText( translate('OpenLP.FormattingTagDialog', 'Description')) self.tagTableWidget.horizontalHeaderItem(1).setText( - translate('OpenLP.FormattingTagDialog', 'Tag Id')) + translate('OpenLP.FormattingTagDialog', 'Tag')) self.tagTableWidget.horizontalHeaderItem(2).setText( translate('OpenLP.FormattingTagDialog', 'Start HTML')) self.tagTableWidget.horizontalHeaderItem(3).setText(