From 237f82db5c54ad89024dd325bbca8931f4297ea1 Mon Sep 17 00:00:00 2001 From: STEPHANVS Date: Tue, 15 Feb 2022 16:01:27 +0100 Subject: [PATCH] unifying warning message --- openlp/plugins/songs/forms/editverseform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index c5498d1f8..43a0334be 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -131,7 +131,7 @@ class EditVerseForm(QtWidgets.QDialog, Ui_EditVerseDialog): translate('SongsPlugin.EditVerseForm', 'No song key is present or song key is not the first ' 'chord.\nFor optimal chord experience, please, include a ' - 'song key before any chord. Ex.: [=G]')) + 'song key\nbefore any chord. Ex.: [=G]')) except KeyError as ke: # Transposing failed critical_error_message_box(title=translate('SongsPlugin.EditVerseForm', 'Transposing failed'), @@ -156,7 +156,7 @@ class EditVerseForm(QtWidgets.QDialog, Ui_EditVerseDialog): translate('SongsPlugin.EditVerseForm', 'No song key is present or song key is not the first ' 'chord.\nFor optimal chord experience, please, include a ' - 'song key before any chord. Ex.: [=G]')) + 'song key\nbefore any chord. Ex.: [=G]')) except KeyError as ke: # Transposing failed critical_error_message_box(title=translate('SongsPlugin.EditVerseForm', 'Transposing failed'),