diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index bad89f2ca..9a2e3acbd 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -90,6 +90,8 @@ class Ui_ExceptionDialog(object): """ Translate the widgets on the fly. """ + # Note that bugs_mail is not clicable, but it adds the blue color and underlining and makes the test copyable. + bugs_mail = ' bugs@openlp.org' exception_dialog.setWindowTitle(translate('OpenLP.ExceptionDialog', 'Error Occurred')) self.description_explanation.setText( translate('OpenLP.ExceptionDialog', 'Please describe what you were trying to do. ' @@ -97,13 +99,12 @@ class Ui_ExceptionDialog(object): self.message_label.setText( translate('OpenLP.ExceptionDialog', 'Oops, OpenLP hit a problem ' 'and couldn\'t recover!

' - 'You can help OpenLP developers to fix this by
' - 'sending them a bug report ' - 'to bugs@openlp.org

' + 'You can help OpenLP developers to fix this by
' + 'sending them a bug report to %s

' 'No email app? You can save this ' 'information to a file and
' 'send it from your mail on browser via an attachement.

' - 'Thank you for being part of making OpenLP better!')) + 'Thank you for being part of making OpenLP better!
') % bugs_mail) self.send_report_button.setText(translate('OpenLP.ExceptionDialog', 'Send E-Mail')) self.save_report_button.setText(translate('OpenLP.ExceptionDialog', 'Save to File')) self.attach_tile_button.setText(translate('OpenLP.ExceptionDialog', 'Attach File'))