From a167d759a5068bb01cbd07cb12c31c0d2f476fd0 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 6 Jul 2010 17:40:25 +0200 Subject: [PATCH] String fixes. --- openlp/plugins/alerts/lib/alertsmanager.py | 2 +- openlp/plugins/bibles/lib/biblestab.py | 26 +++++++++++----------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index a8c4c9bfe..32150748a 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -79,7 +79,7 @@ class AlertsManager(QtCore.QObject): if self.timer_id != 0: Receiver.send_message(u'maindisplay_status_text', translate('AlertsPlugin.AlertsManager', - 'Alert message created and delayed')) + 'Alert message created and displayed.')) return Receiver.send_message(u'maindisplay_status_text', u'') self.generateAlert() diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 3d3966777..43f4aa1dd 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -150,34 +150,34 @@ class BiblesTab(SettingsTab): def retranslateUi(self): self.VerseDisplayGroupBox.setTitle( - translate('BiblesPlugin,BiblesTab', 'Verse Display')) + translate('BiblesPlugin.BiblesTab', 'Verse Display')) self.NewChaptersCheckBox.setText( - translate('BiblesPlugin,BiblesTab', + translate('BiblesPlugin.BiblesTab', 'Only show new chapter numbers')) self.LayoutStyleLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Layout Style:')) + translate('BiblesPlugin.BiblesTab', 'Layout style:')) self.DisplayStyleLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Display Style:')) + translate('BiblesPlugin.BiblesTab', 'Display style:')) self.BibleThemeLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Bible Theme:')) + translate('BiblesPlugin.BiblesTab', 'Bible theme:')) self.LayoutStyleComboBox.setItemText(0, - translate('BiblesPlugin,BiblesTab', 'verse per slide')) + translate('BiblesPlugin.BiblesTab', 'Verse Per Slide')) self.LayoutStyleComboBox.setItemText(1, - translate('BiblesPlugin,BiblesTab', 'verse per line')) + translate('BiblesPlugin.BiblesTab', 'Verse Per Line')) self.LayoutStyleComboBox.setItemText(2, - translate('BiblesPlugin,BiblesTab', 'continuous')) + translate('BiblesPlugin.BiblesTab', 'Continuous')) self.DisplayStyleComboBox.setItemText(0, - translate('BiblesPlugin,BiblesTab', 'No brackets')) + translate('BiblesPlugin.BiblesTab', 'No Brackets')) self.DisplayStyleComboBox.setItemText(1, - translate('BiblesPlugin,BiblesTab', '( and )')) + translate('BiblesPlugin.BiblesTab', '( And )')) self.DisplayStyleComboBox.setItemText(2, - translate('BiblesPlugin,BiblesTab', '{ and }')) + translate('BiblesPlugin.BiblesTab', '{ And }')) self.DisplayStyleComboBox.setItemText(3, - translate('BiblesPlugin,BiblesTab', '[ and ]')) + translate('BiblesPlugin.BiblesTab', '[ And ]')) self.ChangeNoteLabel.setText(translate('BiblesPlugin.BiblesTab', 'Note:\nChanges don\'t affect verses already in the service')) self.BibleDualCheckBox.setText( - translate('BiblesPlugin,BiblesTab', 'Display Dual Bible Verses')) + translate('BiblesPlugin.BiblesTab', 'Display dual Bible verses')) def onBibleThemeComboBoxChanged(self): self.bible_theme = self.BibleThemeComboBox.currentText()