diff --git a/openlp/core/ui/wizard.py b/openlp/core/ui/wizard.py index c2de33cc5..5724e618f 100644 --- a/openlp/core/ui/wizard.py +++ b/openlp/core/ui/wizard.py @@ -277,7 +277,7 @@ class OpenLPWizard(QtGui.QWizard, RegistryProperties): :param filters: The file extension filters. It should contain the file description as well as the file extension. For example:: - 'OpenLP 2.0 Databases (*.sqlite)' + 'OpenLP 2 Databases (*.sqlite)' """ if filters: filters += ';;' diff --git a/openlp/plugins/remotes/lib/httprouter.py b/openlp/plugins/remotes/lib/httprouter.py index d12898514..85190896a 100644 --- a/openlp/plugins/remotes/lib/httprouter.py +++ b/openlp/plugins/remotes/lib/httprouter.py @@ -310,9 +310,9 @@ class HttpRouter(RegistryProperties): Translate various strings in the mobile app. """ self.template_vars = { - 'app_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Remote'), - 'stage_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Stage View'), - 'live_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Live View'), + 'app_title': translate('RemotePlugin.Mobile', '%s Remote' % UiStrings().OLPV2x), + 'stage_title': translate('RemotePlugin.Mobile', '%s Stage View' % UiStrings().OLPV2x), + 'live_title': translate('RemotePlugin.Mobile', '%s Live View' % UiStrings().OLPV2x), 'service_manager': translate('RemotePlugin.Mobile', 'Service Manager'), 'slide_controller': translate('RemotePlugin.Mobile', 'Slide Controller'), 'alerts': translate('RemotePlugin.Mobile', 'Alerts'), diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py index aebbd3a9e..b5565f05a 100644 --- a/openlp/plugins/songs/lib/importer.py +++ b/openlp/plugins/songs/lib/importer.py @@ -187,14 +187,14 @@ class SongFormat(object): 'name': 'OpenLyrics', 'prefix': 'openLyrics', 'filter': '%s (*.xml)' % translate('SongsPlugin.ImportWizardForm', 'OpenLyrics Files'), - 'comboBoxText': translate('SongsPlugin.ImportWizardForm', 'OpenLyrics or OpenLP 2.0 Exported Song') + 'comboBoxText': translate('SongsPlugin.ImportWizardForm', 'OpenLyrics or OpenLP 2 Exported Song') }, OpenLP2: { 'class': OpenLPSongImport, 'name': UiStrings().OLPV2, 'prefix': 'openLP2', 'selectMode': SongFormatSelect.SingleFile, - 'filter': '%s (*.sqlite)' % (translate('SongsPlugin.ImportWizardForm', 'OpenLP 2.0 Databases')) + 'filter': '%s (*.sqlite)' % (translate('SongsPlugin.ImportWizardForm', 'OpenLP 2 Databases')) }, Generic: { 'name': translate('SongsPlugin.ImportWizardForm', 'Generic Document/Presentation'), diff --git a/openlp/plugins/songs/lib/importers/openlp.py b/openlp/plugins/songs/lib/importers/openlp.py index fc1e89f9b..4f4b938e3 100644 --- a/openlp/plugins/songs/lib/importers/openlp.py +++ b/openlp/plugins/songs/lib/importers/openlp.py @@ -94,7 +94,7 @@ class OpenLPSongImport(SongImport): # Check the file type if not self.import_source.endswith('.sqlite'): self.log_error(self.import_source, translate('SongsPlugin.OpenLPSongImport', - 'Not a valid OpenLP 2.0 song database.')) + 'Not a valid OpenLP 2 song database.')) return self.import_source = 'sqlite:///%s' % self.import_source # Load the db file