From 66a674c8de5042ca395e3bc852c44a5f56895e4a Mon Sep 17 00:00:00 2001 From: Ken Roberts Date: Thu, 9 Oct 2014 15:00:29 -0700 Subject: [PATCH] more wizard text updates --- openlp/core/ui/projector/wizard.py | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/openlp/core/ui/projector/wizard.py b/openlp/core/ui/projector/wizard.py index 26ccf9d7c..4c6da818d 100644 --- a/openlp/core/ui/projector/wizard.py +++ b/openlp/core/ui/projector/wizard.py @@ -163,26 +163,24 @@ class ProjectorWizard(QtGui.QWizard, RegistryProperties): self.host_page.setSubTitle(translate('OpenLP.ProjectorWizard', 'Enter the IP address, port, and PIN used to conenct to the projector. ' 'The port should only be changed if you know what you\'re doing, and ' - 'the pin should only be entered if it\'s required.' - '

Once the IP address has been verified as correct and not ' - 'in the database, the rest of the information can be added on the next page.')) + 'the pin should only be entered if it\'s required.')) self.host_page.help_ = translate('OpenLP.ProjectorWizard', 'IP Address: The IP address of the projector to connect to.
' - 'PJLink Port: The port number. Default is 4352.
' - 'PJLink PIN: If needed, enter the PIN access code for the projector.
' - '
Once I verify the address is a valid IP address and not in the ' - 'database, you can then add the rest of the information on the next page.') + 'Port: The port number. Default is 4352.
' + 'PIN: If needed, enter the PIN access code for the projector.
' + '
Once the IP address has been verified as correct and not ' + 'in the database, the rest of the information can be added on the next page.') self.host_page.ip_number_label.setText(translate('OpenLP.ProjectorWizard', 'IP Address: ')) - self.host_page.pjlink_port_label.setText(translate('OpenLP.ProjectorWizard', 'PJLink Port: ')) - self.host_page.pjlink_pin_label.setText(translate('OpenLP.ProjectorWizard', 'PJLink PIN: ')) + self.host_page.pjlink_port_label.setText(translate('OpenLP.ProjectorWizard', 'Port: ')) + self.host_page.pjlink_pin_label.setText(translate('OpenLP.ProjectorWizard', 'PIN: ')) self.edit_page.setTitle(translate('OpenLP.ProjectorWizard', 'Add/Edit Projector Information')) self.edit_page.setSubTitle(translate('OpenLP.ProjectorWizard', 'Enter the information below in the left panel for the projector.')) self.edit_page.help_ = translate('OpenLP.ProjectorWizard', 'Please enter the following information:' - '

PJLink Port: The network port to use. Default is %s.' - '

PJLink PIN: The PJLink access PIN. Only required if ' - 'PJLink PIN is set in projector. 4 characters max.

Name: ' + '

Port: The network port to use. Default is %s.' + '

PIN: The PJLink access PIN. Only required if ' + 'PJLink PIN is set in projector.

Name: ' 'A unique name you want to give to this projector entry. 20 characters max. ' '

Location: The location of the projector. 30 characters ' 'max.

Notes: Any notes you want to add about this ' @@ -191,8 +189,8 @@ class ProjectorWizard(QtGui.QWizard, RegistryProperties): 'network and can be accessed while running this wizard. ' '(Currently not implemented)' % PJLINK_PORT) self.edit_page.ip_number_label.setText(translate('OpenLP.ProjectorWizard', 'IP Address: ')) - self.edit_page.pjlink_port_label.setText(translate('OpenLP.ProjectorWizard', 'PJLink port: ')) - self.edit_page.pjlink_pin_label.setText(translate('OpenLP.ProjectorWizard', 'PJLink PIN: ')) + self.edit_page.pjlink_port_label.setText(translate('OpenLP.ProjectorWizard', 'Port: ')) + self.edit_page.pjlink_pin_label.setText(translate('OpenLP.ProjectorWizard', 'PIN: ')) self.edit_page.name_label.setText(translate('OpenLP.ProjectorWizard', 'Name: ')) self.edit_page.location_label.setText(translate('OpenLP.ProjectorWizard', 'Location: ')) self.edit_page.notes_label.setText(translate('OpenLP.ProjectorWizard', 'Notes: '))