From 212d4c8678d252b4e0465815683aebc39208ad82 Mon Sep 17 00:00:00 2001 From: John Morris Date: Mon, 21 Oct 2019 20:05:35 -0400 Subject: [PATCH] Updated label for Copy and Custom Footer Text --- openlp/core/ui/printservicedialog.py | 4 ++-- openlp/core/ui/printserviceform.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index 3c7c5d1fc..f3121d103 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -67,7 +67,7 @@ class Ui_PrintServiceDialog(object): self.toolbar.addWidget(self.options_button) self.toolbar.addSeparator() self.plain_copy = self.toolbar.addAction(UiIcons().clone, - translate('OpenLP.PrintServiceForm', 'Copy')) + translate('OpenLP.PrintServiceForm', 'Copy as Text')) self.html_copy = self.toolbar.addAction(UiIcons().clone, translate('OpenLP.PrintServiceForm', 'Copy as HTML')) self.toolbar.addSeparator() @@ -139,7 +139,7 @@ class Ui_PrintServiceDialog(object): self.zoom_in_button.setToolTip(translate('OpenLP.PrintServiceForm', 'Zoom In')) self.options_button.setText(translate('OpenLP.PrintServiceForm', 'Options')) self.title_label.setText(translate('OpenLP.PrintServiceForm', 'Title:')) - self.footer_label.setText(translate('OpenLP.PrintServiceForm', 'Custom Footer Text:')) + self.footer_label.setText(translate('OpenLP.PrintServiceForm', 'Service Note Text:')) self.options_group_box.setTitle(translate('OpenLP.PrintServiceForm', 'Other Options')) self.slide_text_check_box.setText(translate('OpenLP.PrintServiceForm', 'Include slide text if available')) self.page_break_after_text.setText(translate('OpenLP.PrintServiceForm', 'Add page break before each text item')) diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index 06318e8e5..ede0906d0 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -197,7 +197,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert if self.footer_text_edit.toPlainText(): div = self._add_element('div', parent=html_data.body, class_id='customNotes') self._add_element( - 'span', translate('OpenLP.ServiceManager', 'Custom Service Notes: '), div, class_id='customNotesTitle') + 'span', translate('OpenLP.ServiceManager', 'Service Notes: '), div, class_id='customNotesTitle') self._add_element('span', html.escape(self.footer_text_edit.toPlainText()), div, class_id='customNotesText') self.document.setHtml(lxml.html.tostring(html_data).decode()) self.preview_widget.updatePreview()